4

我有一个具有 DisplayAttribute 属性“价格”的模型

[Display(Name = "Price (in €)")]

现在我想在表格标题中使用

@Html.DisplayNameFor(model => model.Price)

但是当列非常小时,文本可能会分成两行:

Price (in
€)

但我希望它以这种方式打破:

Price
(in €)

是否可以在 Display 属性中插入不间断空格?使用“ Price (in €)”会导致“  ”打印为文本。

4

1 回答 1

6

Andrei 在评论中发布了正确的答案:非中断空格是一个 unicode 字符,代码为 00a0。所以这应该工作:

[Display(Name = "Price (in\u00a0€)")]
于 2014-11-12T07:44:22.487 回答