l20n:服务器端节点resolveValues错误

时间:2016-02-07 13:51:04

标签: javascript node.js l20n

我无法从l20n节点Github页面运行示例代码而没有错误。

import { Env, fetchResource } from 'l20n';

const env = new Env('en-US', fetchResource);
const ctx = env.createContext(['locales/{locale}.l20n']);
const langs = [
  {code: 'es-ES'},
  {code: 'en-US'}
];

ctx.resolveValues(langs, ['foo', 'bar']).then(
  ([foo, bar]) => console.log(foo, bar));

首先,它使用ES6导入语法,实际上并不是由节点应用。 我编辑了一下:

var Env =  require('l20n').Env;
var fetchResource = require('l20n').fetchResource;
var env = new Env('ru', fetchResource);

但还有另一个问题:function resolveValues不存在。 是否有人为l20n提供了良好实现的node.js片段?需要它很糟糕

2 个答案:

答案 0 :(得分:1)

这是一个文档错误,对不起,我很抱歉。 Node支持是实验性的,Env API是内部的,它在没有对文档进行相应更改的情况下进行了更改。文档现在是up-to-date

const L20n = require('l20n');
const langs = [
  {code: 'es-ES'},
  {code: 'en-US'}
];

// fetchResource is node-specific, Env isn't
const env = new L20n.Env(L20n.fetchResource);

// helpful for debugging
env.addEventListener('*', e => console.log(e));

// contexts are immutable;  if langs change a new context must be created
const ctx = env.createContext(langs, ['./locales/{locale}.l20n']);

// pass string ids or tuples of [id, args]
ctx.formatValues('foo', ['bar', {baz: 'Baz'}]).then(values => {
  // values is an array of resolved translations
  console.log(values);
});

// -> ['Foo en español', 'Bar only exists in English']

答案 1 :(得分:0)

为Node.js + Polymer + L20n集成创建了一个'案例研究'教程 Tutorial: solution for node.js / Polymer i18n based on L20n library