模型绑定List并创建单个对象
我在这样的视图中有模型,
@model List<Products>
我可以迭代它并显示所有产品。但是,单击添加按钮时,我想显示一个弹出窗口,它将添加产品(发送请求以创建操作)。
public JSONResult create(Product P) {}
创建表单也在同一页面上,那么我如何只发送新的单个产品?
I have model in a view like this
@model List<Products>
I can itereate over it and show all the products. But on click of add button, I want to show a popup which will add a product (sending request to create action).
public JSONResult create(Product P) {}
Create form is also on same page, so how I will only send a newly single product?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会发现 以下博客文章很有用。
You may find the following blog post useful.