Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MVC 制作网页,我想知道是否可以将字段设置为可为空,我的意思是,与必需相反,因为我希望它是一个可选字段。谢谢你。
所有对象类型都可以为空,即可选,对于值类型,您可以使用type?表示法或显式使用Nullable<type>. 如果您没有为该属性向 ModelBinder 提供值,那么它将收到 NULL。
type?
Nullable<type>
如果您在模型中的可选字段上省略 [Required] 属性,这将产生预期的效果。