我有以下行:
$.getJSON('@Url.Action("RegistrationShareClassReport", new { id = ViewBag.Id })', function (data) {
viewModel.RegistrationShareClassReport(data);
});
这基本上以 json 格式返回具有不同元素的数据。例如
id = "2",
name = "tj",
country = "GB"
id = "3",
name = "pj",
country = "IT"
我想要的是从该视图模型中为每个项目填充所有国家/地区的数组。所以我需要遍历viewmodel数据并从每个国家中提取国家。
我想知道我可以在 knockout.js 中实现这一点吗?
谢谢