jquery ajax 请求status==0.该怎么调试
发布网友
发布时间:2022-05-05 00:01
我来回答
共1个回答
热心网友
时间:2022-04-23 02:15
应该不是啥写错的一些低级错误,因为同样的代码结构我前面的都可以正常请求,这一个突然就不行了。请解说一下。
$.ajax({
url: getRootPath() + '/merchant/shop!toEdit',
type : 'Post',
cache : false,
dataType : 'html',
data:{
},
success : function(d) {
alert(d);
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.responseText);
alert(XMLHttpRequest.readyState);
alert(textStatus);
}
public String toEdit() throws Exception{
merchant = (Merchant)getSession().getAttribute("merchant");
shop = shopService.queryByMerchant(merchant.getId());
return "toEdit";
}
<action name="shop" class="com..web.merchant.action.ShopAction">
<result name="toEdit">/WEB-INF/pages/editShop.jsp</result>
</action>
ajax struts2 error status?==?0
[解决办法]
浏览器直接访问getRootPath() + '/merchant/shop!toEdit'
这个地址有输出吗,同时用chrome开发工具看发送xhr返回了什么内容