如何将 jQuery get 方法与 ASP.NET MVC 控制器操作一起使用?
我想使用 jQuery get 方法和部分视图。最好的方法是什么?我读到了 jQuery get ,对我来说最简单的方法是这段代码:
$.get(@Url.Action('Controller', 'Action'), function () { });
I want to use jQuery get method with a partial view. What is the best way to do it? I read about jQuery get and the simplest way to me is this code:
$.get(@Url.Action('Controller', 'Action'), function () { });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只是在 url 周围缺少引号,并且弄乱了
Url.Action
帮助程序语法。正确的方法如下:注意传递给 $.get 方法的 url 周围的单引号以及 Url.Action 帮助器的签名。
You are just missing quotes around the url and have messed up the
Url.Action
helper syntax. Here's the correct way:Notice the single quotes around the url passed to the $.get method and the signature of the Url.Action helper.