上下文:用 JavaScript 和 AMD 模块(如 require.js)编写的单页 Web 应用程序
用 AMD 模块实现 i18n 的更好方法是什么?
让我们说:
translation.js 返回一些 i18n 函数
require([..modules files., 'translation.js' ], function(.modules.. , t ){
here in the code/view templates I use t('give_me_text') function
})
这种方法可以吗?