i18next在ejs上无法正常工作

时间:2015-05-21 01:07:54

标签: express ejs i18next

我创建了一个孤立的简单项目来测试它(代码snnipets吼叫),因为我在主项目中遇到了完全相同的问题,所以我想也许其他组件之一可能导致这个问题,但我有同样的在孤立的项目中的问题,现在我不知道如何使其工作。 初始化配置如下:

i18n.init({
    ns: {
        namespaces: ['ns.common', 'ns.special'],
        defaultNs: 'ns.special'
    },
    resSetPath: 'locales/__lng__/new.__ns__.json',
    saveMissing: true,
    debug: true,
    sendMissingTo: 'fallback',
    preload: ['en', 'de'],
    detectLngFromPath: 0,
    ignoreRoutes: ['img/', 'img', 'img/', '/img/', 'css/', 'i18next/']
});

// Configuration
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
    extended: true
}));
app.use(i18n.handle); // have i18n befor app.router

app.set('view engine', 'ejs');
app.set('views', __dirname);

i18n.registerAppHelper(app)
    .serveClientScript(app)
    .serveDynamicResources(app)
    .serveMissingKeyRoute(app);

i18n.serveWebTranslate(app, {
    i18nextWTOptions: {
        languages: ['de-DE', 'en-US', 'dev'],
        namespaces: ['ns.common', 'ns.special'],
        resGetPath: "locales/resources.json?lng=__lng__&ns=__ns__",
        resChangePath: 'locales/change/__lng__/__ns__',
        resRemovePath: 'locales/remove/__lng__/__ns__',
        fallbackLng: "dev",
        dynamicLoad: true
    }
});

ejs是这样的: html <body> <span>Should show a hello world</span></br> <span>;<%t('hello.world')%></span> </body> 我添加了这样的t函数(纠正了未定义的错误):

app.locals.t = function(key){
    return i18n.t(key);
};

所有内容都应该显示网站上的下一个视图:

https://cloud.githubusercontent.com/assets/2654171/7738735/bef1a7ce-ff25-11e4-89f8-257502b27396.PNG

但是它只是显示了这一点:

https://cloud.githubusercontent.com/assets/2654171/7738741/d0685f84-ff25-11e4-9c3d-1a39ca7c1bb1.PNG

我真的很感激使用i18n的一些建议或ejs的例子。 顺便说一句,我用的是: - 表达4 -ejs 1 -i18next 1.7.10

1 个答案:

答案 0 :(得分:0)

为了解决这个问题,你必须把这样的代码放在:

<span>;<%=t('hello.world')%></span>