jQuery-jquery调用webservice出bug
<script type="text/javascript">
$.ajax({
url: "http://webservice.xxxxx.cn/FleaMarketService.asmx/GetAllGoods",
type: "post",
dataType: "json",
contentType: "application/json;utf-8",
data: "{ }",
success: function (json) {
var a = eval('(' + json + ')');
alert(a.d);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
500是接口问题
即使不包含任何参数,你直接用浏览器访问:
http://webservice.xxxxx.cn/FleaMarketService.asmx/GetAllGoods
尝试,如果可以访问,从代码来看,有可能是接口不支持post提交参数,修改:
type: "post"
为
type: "get"
或者直接用 jQuery.get() 来发送请求
jquery不支持post跨域,可以使用$.getJSON() 或者jQuery.get() 实现。推荐的是目前jQuery $.ajax()支持get方式的跨域,这其实是采用jsonp的方式来完成的.