django将数组传递给前台模板的方法

作者:zhaoyangjian724 时间:2023-09-26 09:06:40 

将数组传递给前台模板:

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>

来源:https://blog.csdn.net/zhaoyangjian724/article/details/79022660

标签:django,数组,传递,前台
0
投稿

猜你喜欢

  • python实现全盘扫描搜索功能的方法

    2022-10-29 14:43:57
  • 算法系列15天速成 第十四天 图【上】

    2023-02-09 22:30:25
  • python利用元类和描述器实现ORM模型的详细步骤

    2023-11-13 14:54:12
  • 自动生成sql语句

    2008-05-09 12:42:00
  • 基于python获取本地时间并转换时间戳和日期格式

    2021-02-23 17:30:06
  • asp无组件备份与还原数据库

    2007-09-24 13:19:00
  • 优化MySQL数据库性能的八大“妙手”

    2007-11-18 14:49:00
  • SQL Server 交叉表查询 case

    2012-01-05 19:31:38
  • asp xmlhttp下载一句话

    2013-06-30 06:47:48
  • Dreamweaver基础技巧全面接触

    2010-03-25 12:23:00
  • 如何判断字段的类型?

    2010-01-18 20:48:00
  • python 基于opencv操作摄像头

    2023-03-06 08:02:31
  • 听歌识曲--用python实现一个音乐检索器的功能

    2021-11-01 00:46:03
  • PHP session会话操作技巧小结

    2023-11-16 23:58:20
  • 详解Python+OpenCV实现图像二值化

    2022-01-02 13:08:07
  • python的re模块使用方法详解

    2022-08-10 16:18:20
  • 微信小程序实现二维码生成器

    2024-04-16 10:29:06
  • .Net行为型设计模式之访问者模式(Visitor)

    2024-05-13 09:18:14
  • 深入解析Go语言编程中的递归使用

    2023-10-09 09:24:36
  • Linux系统下实现远程连接MySQL数据库的方法教程

    2024-01-14 09:44:17
  • asp之家 网络编程 m.aspxhome.com