如何从模型状态获取错误消息

发布于 2024-08-16 16:59:39 字数 153 浏览 6 评论 0原文

我正在使用

modelstate.Adderror("test","test message")

以及如何在控制器本身中获取此 modelstate 值。

就像我需要在控制器中获取“test”的错误消息一样。

I'm using

modelstate.Adderror("test","test message")

And how can i get this modelstate value in controller itself.

Like I need to get the error message of "test" in the controller.

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

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

发布评论

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

评论(2

征棹 2024-08-23 16:59:39

他在控制器中要求,我无法验证这一点,但我认为这只是类似:

ModelState["test"].Value
ModelState["test"].Error
ModelState["test"]

上述之一。

He asks for in the controller, I cannot verify this but I think this is simply something like:

ModelState["test"].Value
ModelState["test"].Error
ModelState["test"]

One of those above.

ぶ宁プ宁ぶ 2024-08-23 16:59:39

尝试 <%=Html.ValidationMessage("Test") %>

Try <%=Html.ValidationMessage("Test") %>.

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