获取json_encode值

时间:2014-02-28 09:50:54

标签: jquery json

我对json的经验不多。我们通过以下函数获取外部数据:

var params = {
...
},
translate: {
    ...
},
data: {
    customerObject:    <?= json_encode($this->customer->toArray()) ?>,
    windings: <?= json_encode($this->windings)?>
},
cache: {
    shapes: {}
},
modals: {}
};

windings var获取页面源中提供的以下数据:

windings: {"0":"base64 png value", "1":"base 64 png value", "2":"base 64 png value", ...}

我需要将base64 png值放入已存在的选择框中(选择框已经具有正确数量的选项,其值正确(0,1,2,..)。

有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

根据评论中的解释:

var options = $("#myselectbox").find("option");
for (var idx in windings) {
    options.eq(idx).prop("img-data", wingings[idx]);
};