这是jquery函数:
$.get("/url", function(){
//success
}).fail(function(){
//fail <---- how to make code go in there.
});
问题是如何让程序进入.fail块,我使用.Net MVC,但是,在Controller中设置断点并不会触发超时异常然后导致失败回调。
不知道人们如何测试这个。
我应该开始看一些工具吗?
答案 0 :(得分:1)
将它放在你的Controller方法中:
return new HttpStatusCodeResult(HttpStatusCode.NotFound);
答案 1 :(得分:0)
使用无效的端点网址。您应该得到404 - 未找到http状态代码错误。