我如何使用对象值作为对象名称
像这样
$.each(columns, function(index, value) {
var objectName = value.object; // need to pass this
to the next $.each
//lets say i'm expecting objectName = x
$.each(values, function(i, v) {
// console.log(v.x) ; // this works fine
console.log(v.objectName);
});
});
我试过toString()
了 没有用 谢谢