MVC 3 Razor,不显示默认值
我正在使用 Html.TextBoxFor(model => model.field) ,它工作得很好,但是它默认为数字 0 ,如果未设置字符串则默认为 N/A ,我如何才能改变它?如果未设置值,则不显示任何内容?
I'm using Html.TextBoxFor(model => model.field) which works fine, however it defaults to 0 for numbers, and to N/A for strings if they are not set, how can i possible change that such it doesn't show anything if the value is not set?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使模型中的值可为空,如下所示:
这样空值将映射到空值,反之亦然。
You have to make the values in your model nullable, like so:
That way an empty value will map to the null value and vice versa.
更改您的模型,使其具有可为空的属性:
Change your model so it has nullable properties: