Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在搜索从具有多个输入、多个模型实例的表单发送的语法(在 c# 中)。例如,假设我有一个模型,该模型在视图中包含两个字符串和一个包含成对 texbox 的表单,我想从每对文本框创建一个模型并将集合发送到控制器。
怎么做到呢?谢谢。
您只能将一个模型提交给控制器。但是,模型可以包含对象列表。例如;
public class myModel { public string Foo { get; set; } public string Wong { get; set; } public List<text_boxes> TextBoxes { get; set; } } public class text_boxes { public name { get; set; } public blah { get; set; } }