C# 将多个字符串(中间有换行符)放入一个 TextAreaFor 字段 (MVC)

发布于 2024-12-09 20:20:04 字数 151 浏览 2 评论 0原文

我有 3 个具有以下格式的字符串(每个字符串都在自己的行上):

“String 1”

“String 2”

“String 3”

在我看来,重新创建/传输此格式到文本区域的最佳方法是什么(同时仍然绑定到视图模型属性)?

I have 3 strings that have the following format(each on its own line):

"String 1"

"String 2"

"String 3"

What's the best way to recreate/transfer this format into a textareafor in my view (while still binding to a viewmodel property)?

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

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

发布评论

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

评论(2

风蛊 2024-12-16 20:20:04

您可以使用视图模型:

public class MyViewModel
{
    public string Text { get; set; }
}

它将传递给视图:

public ActionResult Index()
{
    var strings = new[] { "String 1", "String 2", "String 3" };
    var model = new MyViewModel
    {
        Text = string.Join(Environment.NewLine, strings)
    };
    return View(model);
}

进行渲染:

@model MyViewModel
...
@Html.TextAreaFor(x => x.Text)

You could use a view model:

public class MyViewModel
{
    public string Text { get; set; }
}

that will be passed to the view:

public ActionResult Index()
{
    var strings = new[] { "String 1", "String 2", "String 3" };
    var model = new MyViewModel
    {
        Text = string.Join(Environment.NewLine, strings)
    };
    return View(model);
}

for rendering:

@model MyViewModel
...
@Html.TextAreaFor(x => x.Text)
旧人哭 2024-12-16 20:20:04

将字符串保存在属于视图模型的 IList 中。

Save the strings in a IList that belongs to the viewmodel.

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