MVC 3 Razor,不显示默认值

发布于 2024-11-11 02:43:01 字数 117 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

深巷少女 2024-11-18 02:43:01

您必须使模型中的值可为空,如下所示:

public class Model
{
    public int? Field { get; set; }
}

这样空值将映射到空值,反之亦然。

You have to make the values in your model nullable, like so:

public class Model
{
    public int? Field { get; set; }
}

That way an empty value will map to the null value and vice versa.

我ぃ本無心為│何有愛 2024-11-18 02:43:01

更改您的模型,使其具有可为空的属性:

class YourModel {
    [Required]
    public int? Integer { get; set; }
}

Change your model so it has nullable properties:

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