我使用下划线模板。可以附加外部文件作为模板吗?
在主干视图中,我有:
textTemplate: _.template( $('#practice-text-template').html() ),
initialize: function(){
this.words = new WordList;
this.index = 0;
this.render();
},
在我的 html 中是:
<script id="practice-text-template" type="text/template">
<h3>something code</h3>
</script>
它运作良好。但我需要外部模板。我尝试:
<script id="practice-text-template" type="text/template" src="templates/tmp.js">
或者
textTemplate: _.template( $('#practice-text-template').load('templates/tmp.js') ),
或者
$('#practice-text-template').load('templates/tmp.js', function(data){ this.textTemplate = _.template( data ) })
但它没有用。