用json解决问题,按变量设置键名

时间:2013-04-19 22:37:28

标签: javascript json variables object push

var a = { property: ((type == 'files') ? 'id' : ((type == 'folders') ? 'name' : '')) };     // have to create a dummy object property...
return_json[type].push({ a['property']: Content[type][index][a['property']] });

我正在尝试为客户端查询返回一些JSON,但我需要返回对象的键基于变量,并且它不起作用。我的印象是创建一个虚拟对象会起作用,但事实并非如此。

Firefox告诉我错误,丢失:在第二行['property']的属性ID之前。

谢谢!


以下是您需要的所有代码。是的,它主要是面向对象的。这两个函数用于在删除文件的ajax请求或用户尝试执行的任何操作之前获取用户选择的文件列表(这是文件管理器)。但是对于某些事情我只想返回每个文件的ID,而不是整个对象,这就是我遇到问题的地方。对于文件,它需要返回一个'id',而它应该返回文件夹的'name'。

GetSelectedJSON: function(which = 0, onlyselected = true, justids = false) {            // add another param to only get IDs!

    var return_json = { files: [], folders: [] }

    this.ForEachItem(which, onlyselected, function(index,type) {

        var type = ((type == 1) ? 'files' : ((type == 2) ? 'folders' : function(){ return; }));

        if (justids) {
            var a = { property: ((type == 'files') ? 'id' : ((type == 'folders') ? 'name' : '')) };     // have to create a dummy object property...
            return_json[type].push({ a['property']: Content[type][index][a['property']] });
        } else {
            return_json[type].push(Content[type][index]);
        }           
    });

    return JSON.stringify(return_json);
},

ForEachItem: function(which = 0, onlyselected = true, method = function(index,type){}) {

    if (which == 0 || which == 1) {
        for (var i = 0; i < (onlyselected ? Content.selected.files.length : Content.files.length); i++) {
            method((onlyselected ? Content.selected.files[i] : i),1);
        }
    }

    if (which == 0 || which == 2) {
        for (var i = 0; i < (onlyselected ? Content.selected.folders.length : Content.folders.length); i++) {
            method((onlyselected ? Content.selected.folders[i] : i),2);
        }
    }
},

1 个答案:

答案 0 :(得分:5)

在对象文字表达式中,:构造的左侧必须是标识符或字符串常量。它不能是一种表达,这是你正在尝试做的事情。

如果你想要的东西与你风格上的东西差不多,你可以使用匿名函数来构建对象:

  return_json[type].push(function() {
    var obj = {};
    obj[a.property] = Content[type][index][a.property];
    return obj;
  }());