我需要在外部JavaScript文件中访问道具。
我有一个包含静态值的JavaScript文件。像
export const SEARCH = {
[Data.NAME]: 'search-default',
[Data.LABEL]: 'Search',
[Data.TYPE]: Types.INPUT_SEARCH,
[InputData.PLACEHOLDER]: 'Search'
};
export const SEARCH_MAP = {
[Data.NAME]: 'search-map',
[Data.LABEL]: 'Search any address in the world',
[Data.TYPE]: Types.INPUT_SEARCH,
[InputData.PLACEHOLDER]: 'Search any address in the world'
};
我需要在运行时访问道具以动态设置值。基本上我正在尝试实现多语言实现。
有没有办法在这里访问道具?
答案 0 :(得分:0)
用于导出对象使用。使用该特定密钥的操作员和访问
例如
const search = require(); //import file
name = search.[DATA.NAME]
like this u can access values in other js file