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.
我想用 Javascript 在表单中创建一些控件,然后我想将它提交到服务器。
服务器可以读取这些动态创建的控件吗?
是的。MVC 本质上是无状态的。请记住,这不是 ASP.NET Webforms——“控件”的存在方式与它们不同。当您进行 POST 时,您只是发送表单字段名称/值对。如果字段的名称对应于模型中的属性,或者对应于操作的参数,它将绑定。