js字典

1、遍历

var json={
    "name":"乔峰",
    "age":"10",
    "sex":""
};
for(var key in json){
    console.log(key+":"+json[key]);
}

 2、通过下表获取

var ViewType =
{
    a: "a",
    b: "b", 
    c: "c" 
};
var keys = Object.keys(ViewType)
var values = Object.values(ViewType)
console.log(keys[1] + ':' + values[1])

 此字典无法在QML中声明,不然会报错: javascript declaration outside script element

posted @ 2021-12-27 22:14  朱小勇  阅读(1135)  评论(0编辑  收藏  举报