我正在使用JQGRId以JSON对象格式获取网格数据。
结果如下:
exec("print foo(1, 5)")
我需要将所有值都放入“key”数组中。
答案 0 :(得分:1)
var arr = [{"Key":"value1"},{"Key":"value2", "id":"id"}];
var anArrayOfKeyValues = [];
arr.forEach(function(ob, i) {
if("Key" in ob) anArrayOfKeyValues.push(ob.Key);
});
console.log(anArrayOfKeyValues); // ["value1", "value2"]