标签: javascript json
我想实现这个目标:
我试过这个:
userId: { isAdmin: false, }
userId是一个const,其值如447785,但结果对象只是将userId显示为属性而不是值。
答案 0 :(得分:2)
var users = {} users[userId] = {isAdmin: false}
这样的感觉可能是对SO的愚蠢解释。我来看看......
答案 1 :(得分:0)
使用此
{ [userId]: { isAdmin: false } }
更多信息:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#New_notations_in_ECMAScript_2015和http://www.benmvp.com/learning-es6-enhanced-object-literals/#computed-property-keys