我有以下 json 数据,位于 urlhttp://localhost/stock/index.php/masterfiles/itemgriddata
[{"name":"asdasd","code":"123","id":"1","unit":"Nos","purprice":"25000"},{"name":"Item2","code":"1235","id":"2","unit":"Nos","purprice":"0"}]
我想获取 的值name
和等于的值code
,并使用 jquery 将它们存储为变量。id
1
我知道有一种方法,例如,
$.getJSON('http://localhost/stock/index.php/masterfiles/itemgriddata', function(data) {
console.log(data);
});
但我不知道如何实现它。任何人都可以帮我找到解决方案吗?