返回视图(元组)的控制器操作 asp.net mvc 3
控制器有没有办法将元组作为模型传递给视图?
像这样的:
return View(Tuple<LandingPage, Models.FilterModel>(landingPage, filter));
谢谢
Is there a way for the controller to pass a tuple as a model to the View?
Something like this:
return View(Tuple<LandingPage, Models.FilterModel>(landingPage, filter));
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您只需要实例化元组:
尽管您最好创建一个包含登录页面和过滤器模型属性的复合视图模型类型。
Yes, you just need to instantiate the Tuple:
Although you're probably better off creating a composite view model type which contains properties for the landing page and the filter model.