我正在尝试调用一个返回 xml 数据的球衣 Web 服务。该调用是通过具有以下格式的 jquery ajax 调用完成的:
$.ajax({
type: "GET",
url: "http://localhost:8080/store/api/categoryservice",
contentType: "application/xml; charset=utf-8",
dataType: "xml",
success: function(resp){
alert("Hello");
}
failure: function(errMsg) {
alert(errMsg);
}
});
当我在导航器中键入 url 时,我会在浏览器中获得以下格式的 xml:
<categoryBeans>
<categoryBean>
<code>1</code>
<name>Nutella</name>
</categoryBean>
<categoryBean>
<code>2</code>
<name>Kinder</name>
</categoryBean>
</categoryBeans>
但是当我从 html5 应用程序进行 Ajax 调用时,没有返回任何内容。
如何调试 ajax 调用?ajax 调用是否正确?
干杯