ASP.Net MVC 中的 PageMethods

发布于 2024-07-09 15:43:55 字数 211 浏览 9 评论 0原文

我发现 ASP.Net PageMethods 非常方便且易于使用,但我刚刚开始使用 MVC 进行开发,不确定如何使用它们?

MVC 中的 PageMethods.MyFunction() 相当于什么,其中 MyFunction 是控制器操作?

我知道我可以使用 Json 函数返回一个值,但如何从客户端调用该操作?

I have found ASP.Net PageMethods very handy and easy to use, but I have just started developing using MVC and am not sure how to use them?

What is the equivalent of PageMethods.MyFunction() in MVC where MyFunction is a Controller action?

I know I can use the Json function to return a value, but how do I call the action from the client?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

胡大本事 2024-07-16 15:43:55

我知道我可以使用 Json 函数
返回一个值,但是我如何调用
客户的行动?

我认为您正在寻找 getJSON

$.getJSON("/controller/action", function(json)
{
  alert("JSON Data: " + json.users[3].name);
});

ajax jQuery 方法。

两者都可以轻松调用操作并从 ASP.NET MVC 获取 JSON 数据。

I know I can use the Json function to
return a value, but how do I call the
action from the client?

I think you're looking for either getJSON

$.getJSON("/controller/action", function(json)
{
  alert("JSON Data: " + json.users[3].name);
});

or the ajax jQuery method.

Either can call an action and get JSON data back from ASP.NET MVC very easily.

几度春秋 2024-07-16 15:43:55

我认为您不需要页面方法。 asp.net 中的页面方法是一种将页面类中的方法公开给客户端代码的方法。

在 MVC 中,您没有页面类,因此您只需向 url(../controller/action/params 或其他)发出 XHR,然后从操作返回 JSON。

更新
重新阅读您的问题后,您似乎想知道如何从客户端发出 XHR。 在原始 javascript 中,您可以只使用 XMLHttpRequest 对象,但无论您使用什么 JS 库,都可能有更好的包装器。 例如,jQuery 的此处

I don't think you need page methods. Page methods in asp.net are a way to expose methods in the page class to your client-side code.

In MVC, you don't have a page class, so you can just issue an XHR to a url (../controller/action/params, or whatever), and return JSON from the action.

Update:
After re-reading your question, it sounds like you want to know how to issue an XHR from the client. In raw javascript, you can just use the XMLHttpRequest object, but whatever JS library you are using probably has a nicer wrapper. jQuery's, for instance, is here

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