const myAssetMap = {
General: {
name: 'Common',
bkgHex: '#eee',
fontHex: '#aaa',
},
...
const getAsset = (name, type) => {
return myAssetMap.name.type;
}
console.log( getAsset('General', 'name') );
这是错误的:Uncaught TypeError: Cannot read property 'type' of undefined
答案 0 :(得分:2)
您正在尝试访问密钥name
和type
,而不是存储在变量中的密钥。改为使用括号表示法:
return myAssetMap[name][type];