这个xml有什么问题吗?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<results xmlns="http://www.host.com/type">
<result>
<attr value="" name="TitleBlock1"/>
<attr value="" name="TitleBlock2"/>
<attr value="Introductory" name="rev"/>
</result>
</results>
当我从服务器收到回复时......当我检查萤火虫时,就是说
XML Parsing Error: no element found Location: moz-nullprincipal:{3c06a977-b497-5c43f72584c8} Line Number 1, Column 1:
^
由于我没有收到任何来自服务器的回复,而且我收到200好请求此网址https://rest-search.host.com/machine/search/meta?id=TR
但没有回复。这是代码
var search_agile_metadata= 'https://rest-search.host.com/m/search/meta?id=';
var on_show_info_agile = function() {
request_meta_info = $.ajax({
url: data + current_doc_info.id,
type: 'GET',
success: data,
error: data
});
};
因此想要更改url以获取json响应。当我将dataType更改为脚本然后我得到响应,但错误missing ; before statement
。我不知道我做错了什么
答案 0 :(得分:1)
服务器响应是否缺少Access-Control-Allow-Origin标头,这将允许您的javascript读取响应?