gpt4 book ai didi

asp.net-mvc - jQuery:将 key /对列表发布到 ASP.NET MVC Controller

转载 作者:行者123 更新时间:2023-12-01 05:57:31 24 4
gpt4 key购买 nike

我在 StackOverflow 中搜索了有关将数据的 kep/pair 列表发布到 MVC Controller 的信息。所有相关帖子均未涵盖 key /配对列表,并且 Bing 也没有提供帮助。这是我的示例代码:

Controller

    <HttpPost>
Public Function Update(cart As List(Of String)) As JsonResult
Dim x = 55
End Function

JS

    list = new Array();
list.push({ "SKU": 1, "Quantity": 1 });
list.push({ "SKU": 2, "Quantity": 2 });
list.push({ "SKU": 3, "Quantity": 5 });

$.ajax({
type: 'POST',
cache: false,
url: 'something.com/controller/poo',
dataType: 'json',
url: me.attr('href'),
data: JSON.stringify({ cart: list }),
success: function (data) {
console.debug(data);
},
error: function (data) {
console.debug(data);
}
});

Controller 中cart的值什么都没有。我不明白为什么。任何帮助将不胜感激。

最佳答案

我在向 Controller 提交 json 值时尝试字典及其效果。

$.toDictionary

关于asp.net-mvc - jQuery:将 key /对列表发布到 ASP.NET MVC Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13966605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com