如何从自定义帮助器方法调用 Ajax.BeginForm?

发布于 2024-10-24 22:32:17 字数 151 浏览 2 评论 0原文

我可以从自定义帮助器方法中调用 Ajax.BeginFrom 吗?

AjaxHelper 在自定义帮助器方法中不可用,因此我尝试在调用 ViewPage 时将可用的“Ajax”传递给 Helper 方法,但在方法中,BeginForm 在传递的“Ajax”参数上不可用。

Can I call Ajax.BeginFrom from a custom helper method ?

AjaxHelper is not available in a custom helper method, so I tried to pass the "Ajax" available in ViewPage to Helper method while calling it, but then in method, BeginForm is not available on that passed "Ajax" parameter.

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

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

发布评论

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

评论(1

離人涙 2024-10-31 22:32:17

您可以实例化它:

public static class HtmlExtensions
{
    public static MvcHtmlString Foo(this HtmlHelper htmlHelper)
    {
        var ajaxHelper = new AjaxHelper(htmlHelper.ViewContext, htmlHelper.ViewDataContainer);

        var form = ajaxHelper.BeginForm();
        // ... use the ajaxHelper and htmlHelper
    }
}

或者如果您正在 AjaxHelper 上编写扩展方法:

public static class AjaxExtensions
{
    public static MvcHtmlString Foo(this AjaxHelper AjaxHelper)
    {
        var htmlHelper = new HtmlHelper(AjaxHelper.ViewContext, AjaxHelper.ViewDataContainer);
        // ... use the ajaxHelper and htmlHelper
    }
}

并且如果您想将其他扩展方法纳入范围,请不要忘记正确的用法:

using System.Web.Mvc;
using System.Web.Mvc.Html;
using System.Web.Mvc.Ajax;

You could instantiate it:

public static class HtmlExtensions
{
    public static MvcHtmlString Foo(this HtmlHelper htmlHelper)
    {
        var ajaxHelper = new AjaxHelper(htmlHelper.ViewContext, htmlHelper.ViewDataContainer);

        var form = ajaxHelper.BeginForm();
        // ... use the ajaxHelper and htmlHelper
    }
}

or if you are writing an extension method on AjaxHelper:

public static class AjaxExtensions
{
    public static MvcHtmlString Foo(this AjaxHelper AjaxHelper)
    {
        var htmlHelper = new HtmlHelper(AjaxHelper.ViewContext, AjaxHelper.ViewDataContainer);
        // ... use the ajaxHelper and htmlHelper
    }
}

And don't forget the proper usings if you want to bring other extension methods into scope:

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