我正在尝试使用 jQuery 的 .ajax 从 Python 脚本返回 XML 数据:
<html><head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
type: "POST",
url: "script.py/method",
dataType: "xml",
success: function(xml) { alert('Success!'); },
error: function(request, error) { alert(error); }
});
});
</script>
</head><body></body></html>
当我script.py
没有返回任何警报显示Success!
时,但只要我尝试添加一些 XML 数据,我得到的只是parseerror
。我应该怎么做才能返回 XML 而不会出现 parseerror?
script.py - 工作
def method(req):
req.content_type = 'text/xml'
req.write('') # Works!
script.py - 损坏
def method(req):
req.content_type = 'text/xml'
req.write('<item>1</item><item>2</item>') # parserror!