在MVC 2中获取列表框的内容
我有一个客户对象视图,允许他选择多种产品。
在我看来,想要显示一个列表框(由我的客户选择的产品),然后在客户端向其中添加和删除项目。然后,我需要将列表框中的所有数据传递回我的操作,以便我可以迭代列表并将其保存在数据库中。
如何将整个列表传递回操作以及操作的参数应该是什么?
在客户端,我认为我可以添加和删除所选产品的选项标签。
我知道模型绑定,但我不知道如何将列表框绑定到对象结构。
京东
I have a view for my customer object that allows him to choose a number of products.
In my view, want to show a list box (products chosen by my customer) and then on the client side add and remove items to it. I then need to pass all the data from the list box back to my action so that I can iterate over the list and save it in the database.
How do I pass the whole list back to the action and what should the parameters for the action?
On the client side I think I can add and remove option tags for the products chosen.
I am aware of model binding but I have no idea how I can bind a listbox to an object structure.
JD
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个有点高级的解决方案,但我发现使用 Knockout 在客户端进行列表操作要多得多比使用 MVC 的内置列表支持更容易。史蒂夫·桑德森 (Steve Sanderson) 的步行< /a> 关于如何实现这一点。他还有一个 仅使用 MVC + 表单进行遍历。我建议同时解决这两个问题。这些解决方案中的任何一个都比将逗号分隔的字符串发布回服务器更具可维护性/可扩展性。
This is a bit of an advanced solution, but I've found that using Knockout for doing list manipulation client-side is much easier than using MVC's built in list support. Steve Sanderson has a great walk though on how to implement this. He also has a walk though using only MVC + forms. I'd suggest working through both. Either of these solutions will be much more maintainable/extensible than posting a comma separated string back to the server.
最简单的方法是让您的方法接受字符串或整数列表,例如:
默认模型绑定器现在会将您的所有产品绑定到您的列表。
您还可以使您的方法接受 FormCollection 并拆分列表框的内容,例如:
产品现在将包含您的所有产品。
The easiest way is to make your method accept a list of strings or integers, like:
The default model binder will now bind all your products to your list.
You can also make your method accept a FormCollection and split the content of your listbox, like:
Products will now contain all your products.