我的服务器响应如下:
{
data : [
{
name: "ADeal",
image: "images/adeal.png",
},
{
name: "SDeal",
image: "images/sdeal.png",
}
]
}
我可以像这样解析它:var jsonObj = JSON.parse(serverResponse)。并且还知道像这样访问对象:jsonObj.data[1].name
但在我的情况下,我在变量中获取属性信息。考虑这个例子:
function dynImage(prop, el, jsonObj){
//Here, prop contains data[1].name
//How can i access the jsonObj and set it to el(i.e, reference of div element)
el.style.backgroundImage = url('');
}