时间:2021-07-01 10:21:17 帮助过:91人阅读
这里需要给前端以xml格式提供一些数据,这些数据在目前的数据库中已经存在。
如果使用django返回xml数据的话,需要包装下头信息:
简单的举个例子:
# -*- coding: utf-8 -*- from xml.dom import minidom import MySQLdb conn = MySQLdb.connect(host='localhost',user='root',passwd='xxx',db='my_xml',charset="utf8") cursor = conn.cursor() cursor.execute('select id, name, style, description, family from ppy_fish') res_list = cursor.fetchall() print len(res_list) doc = minidom.Document() root = doc.createElement("data") doc.appendChild(root) ATTRIBUTE = {"n":1, "d":3} for res in res_list: node = doc.createElement(res[2]) for i in ATTRIBUTE: id_node = doc.createElement("%s" % i) data = doc.createTextNode("%s" % res[ATTRIBUTE[i]]) id_node.appendChild(data) node.appendChild(id_node) root.appendChild(node) str_xml = doc.toxml("utf-8") f = open('fish.xml', 'w') f.write(str_xml) f.close() cursor.close() conn.close()
希望本文所述对大家的Python程序设计有所帮助。