django将数组传递给前台模板的方法
更新时间:2019年08月06日 11:14:59 作者:zhaoyangjian724
今天小编就为大家分享一篇django将数组传递给前台模板的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
将数组传递给前台模板:
1.
def modifyBtn(req,modifyip):
print modifyip
conn= MySQLdb.connect(
host='localhost',
port = 3306,
user='root',
passwd='1234567',
db ='DEVOPS'
)
cur = conn.cursor()
a = cur.execute("select ip,info,env from machine_info where ip=%s ",[modifyip])
info = cur.fetchall()
print info
print type(info)
return render(req,'cmdb/modifyBtn.html',{'info':info})
2. node2:/django/mysite/news/templates/cmdb#cat modifyBtn.html
<html>
<head>
<title>运维平台</title>
<link rel="stylesheet" type="text/css" href="/static/Css/Equipment/modifyBtn.css" rel="external nofollow" >
<link rel="stylesheet" type="text/css" href="/static/Css/Public/header.css" rel="external nofollow" >
<link rel="stylesheet" type="text/css" href="/static/Css/Public/menu.css" rel="external nofollow" >
</head>
<body>
<include file="Public:header"/>
<div class="content">
<include file="Public:menu"/>
<div class="con fl">
<form id="condition" action="/static/modifyEquipment" method="post">
{% for x in info %}
<label class="condition">地址</label><input type="text" name="ip" class="equipment_sz" value={{x.0}}>
<label class="condition">描述</label><input type="text" name="info" class="equipment_sz" value={{x.1}}>
<label class="condition">环境</label><input type="text" name="env" class="equipment_sz" value={{x.2}}>
<input type="submit" value="设备修改" class="equipment_add_btn">
{% endfor %}
</form>
</div>
</div>
</body>
<script type="text/javascript" src="/static/Js/jquery-2.2.2.min.js"></script>
<!-- <script type="text/javascript" src="/static/Js/Equipment/addEquipment.js"></script> -->
</html>
以上这篇django将数组传递给前台模板的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Python环境管理virtualenv&virtualenvwrapper的配置详解
这篇文章主要介绍了Python环境管理virtualenv&virtualenvwrapper的配置详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-07-07
python PyQt5中QRadioButton的详细使用教程与应用实战
PyQt5是一个跨平台的GUI工具包,用于创建具有Python绑定的Qt应用程序,在PyQt5中,QRadioButton是一个非常有用的控件,用于在用户界面上提供单选选项,本文将详细介绍QRadioButton的基本用法、常用属性和方法,需要的朋友可以参考下2024-08-08
Django日志和调试工具栏实现高效的应用程序调试和性能优化
这篇文章主要介绍了Django日志和调试工具栏实现高效的应用程序调试和性能优化,Django日志和调试工具栏为开发者提供了快速定位应用程序问题的工具,可提高调试和性能优化效率,提高应用程序的可靠性和可维护性2023-05-05


最新评论