我试图瞄准所以我可以在被调用的函数中使用i18n。
我有错误:
(node:15696) UnhandledPromiseRejectionWarning: TypeError: i18n.__ is not a function
我怎么能让i18n在函数内部工作而不必在一个req中?
Server.js:
var i18n = require('i18n-2');
global.i18n = i18n;
i18n.expressBind(app, {
// setup some locales - other locales default to en silently
locales: ['en', 'no'],
// change the cookie name from 'lang' to 'locale'
cookieName: 'locale'
});
app.use(function(req, res, next) {
req.i18n.setLocaleFromCookie();
next();
});
//CALL another file with some something here.
otherfile.js:
somefunction() {
message = i18n.__("no_user_to_select") + "???";
}
我该怎么解决这个问题?
如果您仔细阅读Using with Express.js下的文档,则会清楚地记录它是如何使用的。在你通过i18n
绑定i18n.expressBind
表达应用程序后,i18n
可以通过所有快速中间件可用的req
对象获得,例如:
req.i18n.__("My Site Title")
所以somefunction
应该是一个中间件,如:
function somefunction(req, res, next) {
// notice how its invoked through the req object
const message = req.i18n.__("no_user_to_select") + "???";
// outputs -> no_user_to_select???
}
或者你需要通过中间件显式传入req
对象,如:
function somefunction(req) {
const message = req.i18n.__("no_user_to_select") + "???";
// outputs -> no_user_to_select???
}
app.use((req, res, next) => {
somefunction(req);
});
如果你想直接使用i18n
,你需要instantiate
,如文件所示
const I18n = require('i18n-2');
// make an instance with options
var i18n = new I18n({
// setup some locales - other locales default to the first locale
locales: ['en', 'de']
});
// set it to global as in your question
// but many advise not to use global
global.i18n = i18n;
// use anywhere
somefunction() {
const message = i18n.__("no_user_to_select") + "???";
// outputs -> no_user_to_select???
}
许多人不鼓励使用全球性的。
// international.js
// you can also export and import
const I18n = require('i18n-2');
// make an instance with options
var i18n = new I18n({
// setup some locales - other locales default to the first locale
locales: ['en', 'de']
});
module.exports = i18n;
// import wherever necessary
const { i18n } = require('./international');