在 Asp.Net MVC 中通过 getJSON 调用操作时出错
我正在通过 $.getJSON() 方法调用控制器操作,但我不知道为什么该操作没有调用。
$.getJSON("/Home/Index", { ID:id }, function(){
});
但是当我将其更改为
$.getJSON("/Home/Index/s", { ID:id }, function(){
});
它时效果很好。我检查了我的路由,没有发现任何问题。可能是什么问题?
I am calling a controller action through $.getJSON() method but i dont know why the action is not calling.
$.getJSON("/Home/Index", { ID:id }, function(){
});
But when i change this to
$.getJSON("/Home/Index/s", { ID:id }, function(){
});
it works fine. I have check my routing and i did not find any problem there. What can be the issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这真的很奇怪。
我已经尝试过您的脚本,我看到的唯一问题是 ASP.NET MVC2 在调用为 GET 时无法返回 json 数据。出于安全原因,它已被阻止。
如果您尝试使用 Fiddler 跟踪您的呼叫,您可能会注意到响应如下所示:
< em>“此请求已被阻止,因为在 GET 请求中使用此请求时,敏感信息可能会泄露给第三方网站。要允许 GET 请求,请将 JsonRequestBehavior 设置为 AllowGet。”
如果你想启用返回数据,无论如何,你可以强制它:
或者执行 POST。您可以在此处找到更多信息。
That's really really weird.
I've tried your script and the only problem I can see is the fact that ASP.NET MVC2 can't return json data when the call is a GET. It's been blocked for security reasons.
If you try to trace your call with Fiddler, you might notice that the response is something like this:
"This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet."
If you want to enable the return data, anyway, you can force it:
or do a POST. You can find more infos here.