我是 ExpressJS 的新手,所以我想设置一个简单的字符串值,我可以翻译。
所以我尝试了globalize-express并将应用程序标题设置为:
app.use(function (req, res, next) {
console.log("App: " + req.Globalize.formatMessage('strings/title'));
res.locals.title = req.Globalize.formatMessage('strings/title');
next();
});
其次是:
app.use('/', index);
看起来它正在正确呈现,但控制台正在发布错误:
发送后无法设置标题。
我怎样才能避免这个错误?