MS MVC 3自定义html助手接收模型作为参数?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 HtmlHelper 的 ViewData 属性来访问模型
you can use the ViewData property of HtmlHelper to access the model