我有以下代码:
pub.call_response = function() {
return {
units: [
{
test_attributes: {
}
}
]
};
};
我有一组变量需要用于键/值,test_attributes
如下所示:
var key1 = something;
var key2 = something;
var value1 = something;
var value2 = something;
pub.call_response = function() {
return {
units: [
{
test_attributes: {
key1: value1,
key2: value2
}
}
]
};
};
显然,这是行不通的。有没有人对如何做这样的事情有任何想法?使用 jQuery 是可以接受的。
谢谢!