このリンクのバックボーンビューで属性を受け取りたい。これがバックボーンでこれを行う正しい方法かどうかはわかりません。たぶん、このリンクのパラメータはビューレンダリングで設定する必要がありますか?
<a class="postDeleteLink" data-id="5" data-hash="Hgsda45f">Delete</a>
イベントをバインドするための私のバックボーンコード:
PostListView = Backbone.View.extend({
events: {
"click .postDeleteLink": "deletePost"
},
deletePost: function(){
//standart jquery way doesn't work, because "this" is already used by backbone
var id = $(this).attr('data-id');
var hash = $(this).attr('data-hash');
}