ASP.NET MVC 模型的可为空字段

发布于 2024-11-11 14:30:31 字数 71 浏览 2 评论 0原文

我正在使用 MVC 制作网页,我想知道是否可以将字段设置为可为空,我的意思是,与必填字段相反,因为我希望它成为可选字段。 谢谢。

I'm making a Web Page with MVC and I would like to know if it's possible to set a field as nullable, I mean, the opposite of Required, because I want it to be an optional field.
Thank you.

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

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

发布评论

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

评论(2

够运 2024-11-18 14:30:31

所有对象类型都可以为 null,即可选,对于值类型,您可以使用 type? 表示法或显式使用 Nullable。如果您没有为该属性向 ModelBinder 提供值,那么它将收到 NULL。

All object types can be nullable, i.e. optional, for value types you can use either the type? notation or explicitly with Nullable<type>. If you don't provide a value to the ModelBinder for that property then it will receive NULL.

疏忽 2024-11-18 14:30:31

如果您省略模型中可选字段的 [Required] 属性,这将达到预期的效果。

If you omit the [Required] attribute on the optional field in the model this will have the desired effect.

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