下划线中的外部模板
我使用下划线模板。是否可以将外部文件附加为模板?
在主干视图中,我有:
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 ) })
但它不起作用。