尝试在我的Webpack项目中首次使用Polyglot,但始终收到未定义polyglot的错误。我可以从某个地方的节点导入它吗?还是我需要将它们导入本地?
var polyglot = new Polyglot();
polyglot.extend({
"hello": "Hello"
});
polyglot.t("hello");
答案 0 :(得分:0)
使用该模块之前,您必须导入或要求该模块。
import Polyglot from 'polyglot';
// const Polyglot = require('polyglot');
const polyglot = new Polyglot();
polyglot.extend({ "hello": "Hello" });
polyglot.t("hello");