MS MVC 3自定义html助手接收模型作为参数?

发布于 2024-11-11 18:39:01 字数 132 浏览 0 评论 0原文

我在 MVC 3 中编写了一个自定义 html 帮助程序,它接收我的视图所基于的模型作为参数。我想知道的是:自定义助手可以在不接收模型作为参数的情况下访问模型吗?有什么方法可以避免像这样调用它:@html.MyCustomHelper(Model)?

I've written a custom html helper in MVC 3 that receive as a parameter the model my view is based on. What I'm wondering is: can a custom helper access the model without receiving it as a parameter? Is there any way to avoid calling it like this: @html.MyCustomHelper(Model)?

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

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

发布评论

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

评论(1

梦回旧景 2024-11-18 18:39:01

您可以使用 HtmlHelper 的 ViewData 属性来访问模型

helper.ViewData.Model

you can use the ViewData property of HtmlHelper to access the model

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