0
嗨,我很努力去理解我將如何做到以下幾點。渲染子視圖在骨幹中查看
我有一個我渲染的骨幹視圖,然後我想添加另一個視圖到該視圖中的dom元素。
這裏是我的代碼,因爲它代表:
define([
'jquery',
'underscore',
'backbone',
'views/common/parent',
'text!templates/currentAccounts.html',
'text!templates/guidesTools.html'
], function($, _, Backbone, ParentView, mainTemplate, subTemplate){
var accountsView = ParentView.extend({
render : function() {
this.$el.html(mainTemplate);
}
});
return new accountsView;
});
我現在需要將子模板(guidesTolls.html)附加到主模板中的dom元素。什麼是最好的方法來做到這一點?
非常感謝你我錯過了做骨幹的部分。我會嘗試你的建議:)再次感謝。 – user1412777 2013-02-26 10:00:47