在JavaScript / React中构建资产源地图的正确方法是什么?

时间:2018-01-26 18:09:40

标签: javascript reactjs assets

我需要为我的应用中的SVG资产列表创建一个源地图,其中每个资产都有一组属性。例如:

const myAssetMap = {
    dog: {
        name: Dog,
        svg: Dog.svg,
        bkgColor: '#EEE',
        textColor: '#FFF',
    },
    cat: {
        name: Cat,
        svg: CatFile.svg,
        bkgColor: '#EEE',
        textColor: '#FFF',
    },
    ....
}

稍后,我可以找到所需的属性:

const getMyParams = (name, type) => {
    return myAssetMap[name][type];
};

这是正确的方法吗?如果有更好的方法,我很乐意学习。

1 个答案:

答案 0 :(得分:-2)

我想没有正确的答案,但你看起来合情合理:)