显示带有警告消息的模型列表的最佳方式是什么?
在控制器操作中,我从方法中获取一些结果,该方法返回一个元组。元组中的第一项是 IList,第二项是 IList。
我想返回一个视图来显示结果,经典的方式: return View("MyView", TheModel");
但我也想更新一个 div 以显示错误或警告消息
知道如何做到这一点吗?最好的方法?
谢谢,
In a controller action, I get some result from a method, this method return a Tuple. The first item in the Tuple, is an IList, the second item is IList.
I'd like return a view to display, the result, the classic way :
return View("MyView", TheModel");
but I'd like update a div too to display error or warning message
An idea how do this ? The best way ?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用
ViewData["Message"] = "您的消息";
然后在视图中将此消息放入 div 中:
或者您可以使简单的 ViewModel 有两个属性(这比以前更好):
操作将如下所示:
然后创建强类型视图向您展示您的 ViewModel
希望这会有所帮助;)
You could use
ViewData["Message"] = "Your message";
and then in the View you put this message in your div:
Or you could make simple ViewModel have tow properties (which is better than previous):
The Action will look like this:
and then make strongly typed view to show your ViewModel
hope this helped ;)
在您的控制器操作中:
和您的视图中:
或将错误消息包含在您的视图模型中并在您的视图中:
In your controller action:
and in your view:
or include the error message as part of your view model and in your view: