Python HttpResponse から (Javascript 経由で) xml データを取得し、それを Web ページの body 要素に配置する方法はありますか?
Pythonで私のxmlの例があります:
import xml.etree.ElementTree as ET
root = ET.Element("table")
tr = ET.SubElement(root, "tr")
td = ET.SubElement(tr, "td")
td.text = "some text"
tree = ET.ElementTree(root)
response = HttpResponse(tree)
JS:
$(document).ready(function() {
$.get("http://localhost:8000/getXml", function(data){
alert(data);
});
});
手伝ってくれてありがとう。