从https://github.com/mashpie/i18n-node的自述文件中,他们展示了如何使用快速模板进行设置,但它使用了帮助程序:
// register helpers for use in templates
app.helpers({
__i: i18n.__,
__n: i18n.__n
});
那么在 Express 3.0 中没有帮助程序,那么如何使用模板注册 i18n 模块?
谢谢你的帮助!
从https://github.com/mashpie/i18n-node的自述文件中,他们展示了如何使用快速模板进行设置,但它使用了帮助程序:
// register helpers for use in templates
app.helpers({
__i: i18n.__,
__n: i18n.__n
});
那么在 Express 3.0 中没有帮助程序,那么如何使用模板注册 i18n 模块?
谢谢你的帮助!