1

我有一个返回表单对象的函数: [{"key":"name","value":"ali","key":"age","value":"56"}]当调用时,如下所示。我怎样才能让它返回相同类型的对象但没有方括号?

setProperties('{"name":"ali","age":"56"}');

function setProperties(str) {
    var properties = [];
    var json = jQuery.parseJSON(str);
    for (property in json) {
      properties.push({
        key: property,
        value: json[property]});
    }
    return properties;
}
4

2 回答 2

5
return properties[0]; // returns the first element of the list instead of the whole list
于 2012-04-20T05:10:56.493 回答
5

方括号表示一个数组字面量,所以如果你只选择数组的第一个元素:[{"name":"ali","age":"56","height":"xyz"}][0]它会返回你想要的对象。

于 2012-04-20T05:13:33.200 回答