gpt4 book ai didi

javascript - 将数据从接收到的 JSON 格式转换为 JVectorMap 格式

转载 作者:行者123 更新时间:2023-12-03 05:21:22 25 4
gpt4 key购买 nike

我正在 MVC 5 中开发 MIS 的仪表板,在该仪表板中我想使用 JVectorMap加载已注册的国家/地区。因此,以下是返回 JSON 的 Controller 操作

public JsonResult registeredCountries()
{
var ret = db.View_RegisteredCountries.Select(x => new { Key = x.CountryCode, Value = x.TotalCompanies }).ToDictionary(x => x.Key, x => x.Value).ToList();

return Json(ret, JsonRequestBehavior.AllowGet);
}

下面是我获取 JSON 的 JS 代码

var data = {};
$.ajax({
url: 'registeredCountries',
type: 'GET',
traditional: true,
async: false,
cache: false,
//async: false,
dataType: 'json'
}).done(function(result) {
data = result;
});

但我的问题是 JVectorMap 使用以下格式的数组

data_array = {
"US": 4977,
"AU": 4873,
"IN": 3671,
"BR": 2476,
"TR": 1476,
"CN": 146,
"CA": 134,
"BD": 100
};

但返回的JSON格式如下

[{ "Key": "SA", "Value": 4 }]

如何将上述 JSON 转换为以下格式,以便可以填充 JVectorMap。

data_array = {
"SA":4
}

最佳答案

只需遍历输入数组并从每个条目创建一个对象即可。

// set up some sample data - in your case you already have this.
var data = JSON.parse('[{"Key":"SA","Value":4},{"Key":"US","Value":12},{"Key":"BR","Value":6}]')

var obj={} // make a new object to build results.
for (var i =0; i < data.length; i = i + 1) {

obj[data[i].Key] = data[i].Value

}

// Note jquery only used for this debug output.
$("#output").html(JSON.stringify(obj))
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='output'></div>

关于javascript - 将数据从接收到的 JSON 格式转换为 JVectorMap 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41365820/

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