私のバックボーン関数には no.of フィルター メソッドがあるため、代わりに 'this.$el.append()'、'this.$el.html()' を使用することにしましたが、html() の置き換えは機能しません。 . ホール ビューを新しいコレクションに置き換えても問題ないと思いました。
同様に、this.$el.empty() を作成しようとしましたが、機能しません...どうすれば親から既存の要素をクリアし、新しい世代の要素を追加できますか..?
私のコード:
renderBoard:function(item){
var singleView = new taskListPhraseI.oneView({model:item}),
// after this, i need to make parent of the element should be empty...
board = this.$el.append(singleView.render()),
newBoard = board.find('.indBoard:last');
this.positionBoards(newBoard);
},
どうすればこれを達成できますか?