如何通过python回复XMLHttpRequest的响应?
我用这个:
data = (xml_string)
req = urllib2.Request(url,data)
response = urllib2.urlopen(req)
print response.read()
但我只打印'主页'。
响应在Chrome中的另一个窗口中打开,格式为“data:text / xml,xml_sting_with_data”)我尝试通过python获取xml_sting_with_data