gpt4 book ai didi

javascript - 如何在MVC中的Jquery中显示二维数组?

转载 作者:行者123 更新时间:2023-12-02 17:24:21 25 4
gpt4 key购买 nike

我正在开发 MVC 应用程序。我正在尝试从 Controller 传递数据并尝试使用 JQuery 显示。

我将数组创建到 Controller 中,并使用 Json 将其传递给 Jquery。

这是数组...

enter image description here

这是 JQuery 的代码。

function getProductDetails(productCode, Index) {
$.ajax({
url: "/Product/getProductDetails/",
data: { Id: productCode },

dataType: "json",
success: function (result)
{


$.each(result.StockData, function (key, Value) {
alert(key + "+" + Value);
});
}
});

}

我已经显示了值的警报...它显示如下...键显示完美,但值显示为对象。

enter image description here

最佳答案

尝试字符串化该对象,

$.each(result.StockData, function (key, Value) {
alert(key + "+" + JSON.stringify(Value));
});

根据您的新要求尝试,

$.each(result.StockData, function (key, Value) {
alert(key + "+" + (Value.Value));
});

关于javascript - 如何在MVC中的Jquery中显示二维数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23629365/

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