在 Asp.Net MVC 中通过 getJSON 调用操作时出错

发布于 2024-10-19 14:01:49 字数 269 浏览 0 评论 0原文

我正在通过 $.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅紫色的梦幻 2024-10-26 14:01:49

这真的很奇怪。
我已经尝试过您的脚本,我看到的唯一问题是 ASP.NET MVC2 在调用为 GET 时无法返回 json 数据。出于安全原因,它已被阻止。

如果您尝试使用 Fiddler 跟踪您的呼叫,您可能会注意到响应如下所示:

< em>“此请求已被阻止,因为在 GET 请求中使用此请求时,敏感信息可能会泄露给第三方网站。要允许 GET 请求,请将 JsonRequestBehavior 设置为 AllowGet。”

如果你想启用返回数据,无论如何,你可以强制它:

return (Json(<your object>, 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:

return (Json(<your object>, JsonRequestBehavior.AllowGet));

or do a POST. You can find more infos here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文