C# 将多个字符串(中间有换行符)放入一个 TextAreaFor 字段 (MVC)
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用视图模型:
它将传递给视图:
进行渲染:
You could use a view model:
that will be passed to the view:
for rendering:
将字符串保存在属于视图模型的 IList 中。
Save the strings in a IList that belongs to the viewmodel.