BackboneJSビュー内でコンテキストを維持するためのより短くよりエレガントな方法はありますか?
this.$el.find(this.itemViewContainer).sortable("destroy").sortable({
connectWith:'.tasks',
delay:140,
revert:200,
items:'li:not(.locked)',
placeholder:'ui-state-highlight',
start:_.bind(function (event, ui){this._sortStart(event, ui);}, this),
receive:_.bind(function (event, ui){this._sortReceive(event, ui);}, this),
stop:_.bind(function (event, ui){this._sortStop(event, ui);}, this)
});
私は以下に言及しています:
- イベント開始
- でも受け取る
- イベントを停止します
重要なのは、this、event、およびuiが内部ビューイベントに渡されることです。