我正在使用react-localization和语言变量的已定义代码 在App.js
中import LocalizedStrings from "react-localization";
let strings = new LocalizedStrings({
en: {
how: "how are you"
},
it: {
how: "Come vuoi il tuo uovo oggi?"
}
});
export strings;
我们可以在App.js中将其用作{strings.how},但我的问题是,当语言值大幅增加时,我们可以将其移动到不同的lang.js文件中,并在app.js中调用它。
如何从其他文件导入和使用“ let字符串”?
答案 0 :(得分:0)
您可以使用以下内容进行命名导出:
export { strings };
然后您可以将其导入到另一个文件中,如下所示:
import { strings } from './path/to/file.js'