我想使用i18n(用于 require.js)库根据用户的语言将存储的字符串加载到资源文件中。我使用了这种方法,因为我在我的项目中同时使用了主干和 require.js。
假设这是我想使用翻译字符串的模板。
<h1><%= test.options.test %></h1>
<b> user_ud: <%= data.id %> </b>
第一行使用从资源文件中获取的数据进行评估。但是第二行是我想使用来自不同来源的数据的地方。
(默认资源文件)
define({
'root': {
'options': {
'test': 'Yellow'
}
},
"en-us": true
});
现在有一部分我想把它呈现给我的视图。
define(['underscore', 'backbone', 'models/model', 'templates/template' , 'i18n!nls/resource'], function ( _, Backbone, tModel, template, resource) {
var TooltipView = Backbone.View.extend({
el : $('#test'),
initialize: function(options){
this.model = new tModel();
},
render: function(){
var $el = this.$el;
if(template.length != 0){
var compiledTemplate = template['test']( resource ) /// loads pre-compiled template ///
$el.html(compiledTemplate);
}else{
console.log(" [e] No template found. ");
}
});
}
});
return TooltipView;
});
我想实现这个输出:
<h1> Yellow </h1>
<b> id: 14 </b>
但我不确定如何将两个数据源放入一个模板中。