如何从externam js文件访问道具 - ReactJS

时间:2017-10-19 10:03:54

标签: reactjs redux react-router react-redux state

我需要在外部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'
};

我需要在运行时访问道具以动态设置值。基本上我正在尝试实现多语言实现。

有没有办法在这里访问道具?

1 个答案:

答案 0 :(得分:0)

用于导出对象使用。使用该特定密钥的操作员和访问 例如 const search = require(); //import file name = search.[DATA.NAME] like this u can access values in other js file