我在文件 test.txt 中以 xml 格式存储数据,
<element-list>
<element>
<name>sam</name>
<title>header</title>
</element>
<element>
<id>3732</id>
<name>mad</name>
<title>header</title>
</element>
</element-list>
我正在尝试使用代码使用 ajax 请求访问该文件,
$.ajax({
type : 'GET',
//url : "http://localhost:8080/cleo-primer/rest/elements/search?uid=1&query="+$("#srchBox").val() ,
url: 'json/test.txt',
dataType: 'xml',
success : function result(s){
console.log(s.element[k].term[j] + " / " + s.element[k].title) ;
},
error: function(xhr, textStatus, error) {
console.log('status: ' + textStatus);
console.log(xhr.responseText + " / " + xhr.status);
//showError('an unknown error occurred while trying to fetch the feed: ' + xhr.status);
}
});
除了错误没有给我任何回应??有什么问题?