后端返回的脑残数据
{status: 0, msg: "成功", data: {1: "第一个测试模板创建", 2: "第er个测试模板创建"}}
data: {1: "第一个测试模板创建", 2: "第er个测试模板创建"}
1: "第一个测试模板创建"
2: "第er个测试模板创建"
msg: "成功"
status: 0
js解析方法
var dicTemplate = {1:'第一个测试模版', 2:'第二个测试模版'};
for(var key in dicTemplate ){
console.log("key: " + key + " ,value: " + dicTemplate [key]);
}
简简单单就解决了 不用谢我!
留下你的评论吧对于这种数据的感想!