如何将对象数组转换为键对值

时间:2016-11-02 09:52:04

标签: javascript jquery

我在msges字段中存储消息。这是格式

enter image description here

我调用了ajax,它以这种格式返回我的数据

  

[object,object,object]

我想将其转换为具有对象键和对象值的数组。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

您已将值读取为对象

//result is the result of the query
    for (var line in result) {
    //acces to uname by line.uname
    //acces to email by line.email
    }

希望能帮到你

或者您可以使用for each

//result is the result of the query
        for each(line in result) {
        //acces to uname by line.uname
        //acces to email by line.email
        }