krakenjs/makara i18n 和来自外部的内容 api(内容丰富)
krakenjs/makara i18n and content from external api (contentful)
我想用 krakenjs 建立一个博客,并想使用它的 i18n 特性 (makara):https://github.com/krakenjs/makara
Makara 需要将所有区域设置放入静态文件中。例如。 locales/US/en/
我如何将它与动态内容一起使用,例如来自contentful.com
以下是解释如何执行此操作的 makara 自述文件的摘录:
If you have runtime values to be inserted, use dust brace to select the value from the dust template context as in the index.greeting line. Note that there is no restriction on inserting HTML tags into the messages. They are just another string of characters as far as the content processing is concerned.
所以你会有一个 属性 像这样:
index.dynamic={dynamicConent}
dynamicContent
的值将在 运行 时从 dust 模板上下文中获取。
我想用 krakenjs 建立一个博客,并想使用它的 i18n 特性 (makara):https://github.com/krakenjs/makara
Makara 需要将所有区域设置放入静态文件中。例如。 locales/US/en/
我如何将它与动态内容一起使用,例如来自contentful.com
以下是解释如何执行此操作的 makara 自述文件的摘录:
If you have runtime values to be inserted, use dust brace to select the value from the dust template context as in the index.greeting line. Note that there is no restriction on inserting HTML tags into the messages. They are just another string of characters as far as the content processing is concerned.
所以你会有一个 属性 像这样:
index.dynamic={dynamicConent}
dynamicContent
的值将在 运行 时从 dust 模板上下文中获取。