是否可以从类访问 Html 而不发送参数?

发布于 2024-11-05 14:38:39 字数 192 浏览 0 评论 0原文

我想访问类中的 Html 对象,因此我可以调用 Class.Method 使用 Html.Partial 呈现某些内容。

有没有办法可以将其称为 Class.Method() 而不是 Class.Method(Html)

I would like to access the Html object inside a class, so I could call Class.Method to render something using Html.Partial.

Is there a way I can call it Class.Method() instead of Class.Method(Html) ?

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

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

发布评论

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

评论(1

北城孤痞 2024-11-12 14:38:39

无论怎样,您都需要引用 HtmlHelper 来调用 Partial 方法。

您可以将其作为 HtmlHelper 的扩展

public static MvcHtmlString Method(this HtmlHelper helper, Class @class)
{
    return helper.Partial(....);
}

,或者从 ClassMethod 方法中创建一个 HtmlHelper,这可能会问题会更大,因为除非您通过 HttpContext 找到对它的引用,否则该类上不会存在 Context

您可以轻松地在控制器上创建 HtmlHelper,如下所示:

    HtmlHelper _htmlHelper;
    public HtmlHelper HtmlHelper
    {
        get 
        {
            if (_htmlHelper == null)
            {
                TextWriter writer = new StringWriter();
                _htmlHelper = new HtmlHelper(new ViewContext(ControllerContext,
                    new WebFormView("Default"),
                    new ViewDataDictionary(),
                    new TempDataDictionary(), writer), new ViewPage());
            }

            return _htmlHelper;
        }
    }

One way or another you're going to need a reference to HtmlHelper to call the Partial method.

You can make it an extension of HtmlHelper

public static MvcHtmlString Method(this HtmlHelper helper, Class @class)
{
    return helper.Partial(....);
}

Or create an HtmlHelper from within the Method method on Class, which might be more problematic since the Context won't exist on that class unless you find a reference to it through your HttpContext

You can easily create an HtmlHelper on your Controller like so:

    HtmlHelper _htmlHelper;
    public HtmlHelper HtmlHelper
    {
        get 
        {
            if (_htmlHelper == null)
            {
                TextWriter writer = new StringWriter();
                _htmlHelper = new HtmlHelper(new ViewContext(ControllerContext,
                    new WebFormView("Default"),
                    new ViewDataDictionary(),
                    new TempDataDictionary(), writer), new ViewPage());
            }

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