如何在我的Webpack项目中使用Polyglot.js?

时间:2019-01-09 11:36:58

标签: javascript webpack polyglot

尝试在我的Webpack项目中首次使用Polyglot,但始终收到未定义polyglot的错误。我可以从某个地方的节点导入它吗?还是我需要将它们导入本地?

var polyglot = new Polyglot();

polyglot.extend({
  "hello": "Hello"
});

polyglot.t("hello");

1 个答案:

答案 0 :(得分:0)

使用该模块之前,您必须导入或要求该模块。

import Polyglot from 'polyglot';
// const Polyglot = require('polyglot');

const polyglot = new Polyglot();

polyglot.extend({ "hello": "Hello" });

polyglot.t("hello");