1

我正在尝试使用 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!
4

1 回答 1

2

您的 xml 无效,您缺少一个根节点(单个根节点),例如

def method(req):
    req.content_type = 'text/xml'
    req.write('<items><item>1</item><item>2</item></items>')
于 2012-08-11T21:56:28.207 回答