使用 jquery 将列表从列表框传递到 mvc 控制器

发布于 2025-01-06 17:31:38 字数 132 浏览 0 评论 0原文

我想知道如何通过 jquery 在 MVC 方法中传递包含值的列表。我有一个 jquery UI 对话框,其中记录粘贴在每一行中。一旦用户单击提交按钮,我想要一个 jquery 它将弹出的多行文本框中的值发布到该方法。 这可能吗? 提前致谢,拉齐亚莱

I would like to know how I can pass a list with values in MVC method via jquery. I have a jquery UI dialog in which records are pasted in each row. Once the user will click the submit button, I want to have a jquery which will post the values from the popup multiline textbox to the method.
Is that possible?
Thanks in advance, Laziale

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

放低过去 2025-01-13 17:31:38

是的,只需从列表中获取值并将其传递给控制器​​即可完成。

你的java脚本看起来像这样:

$('#submit').click(function() {
        //parsing and collecting the values from the list
        var values = { 'values': 'your string array here'};

         $.ajax({
        type: "GET",
        cache: false,
        url: "/controller/YourAction",
        dataType: "json",
        traditional: true,
        data: values
    });
    });

并且你将在控制器中执行这样的操作:

[HttpGet]
    public JsonResult YourAction(string[] values)
    {
        //your action here
        return Json("success", JsonRequestBehavior.AllowGet);
    }

Yes it can be done simply get the values from the list and pass the to the controller.

your java script will look something like this:

$('#submit').click(function() {
        //parsing and collecting the values from the list
        var values = { 'values': 'your string array here'};

         $.ajax({
        type: "GET",
        cache: false,
        url: "/controller/YourAction",
        dataType: "json",
        traditional: true,
        data: values
    });
    });

and you will have such an action in the controller:

[HttpGet]
    public JsonResult YourAction(string[] values)
    {
        //your action here
        return Json("success", JsonRequestBehavior.AllowGet);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文