在MVC 2中获取列表框的内容

发布于 2024-10-09 11:44:43 字数 241 浏览 1 评论 0原文

我有一个客户对象视图,允许他选择多种产品。

在我看来,想要显示一个列表框(由我的客户选择的产品),然后在客户端向其中添加和删除项目。然后,我需要将列表框中的所有数据传递回我的操作,以便我可以迭代列表并将其保存在数据库中。

如何将整个列表传递回操作以及操作的参数应该是什么?

在客户端,我认为我可以添加和删除所选产品的选项标签。

我知道模型绑定,但我不知道如何将列表框绑定到对象结构。

京东

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

亢潮 2024-10-16 11:44:43

这是一个有点高级的解决方案,但我发现使用 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.

友欢 2024-10-16 11:44:43

最简单的方法是让您的方法接受字符串或整数列表,例如:

public ActionResult About(List<string> products);

默认模型绑定器现在会将您的所有产品绑定到您的列表。

您还可以使您的方法接受 FormCollection 并拆分列表框的内容,例如:

public ActionResult Products(FormCollection form)
{
    var products = form["Products"].Split(',');
}

产品现在将包含您的所有产品。

The easiest way is to make your method accept a list of strings or integers, like:

public ActionResult About(List<string> products);

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:

public ActionResult Products(FormCollection form)
{
    var products = form["Products"].Split(',');
}

Products will now contain all your products.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文