DM.Backbone.View.feedback = Backbone.View.extend( {
initialize: function (){
this.render( this.model.get( 'data' ) || [] );
},
render: function ( param ){
if ( $( '.problem_report_reply' ).length > 0 ) {
_.bind( this.mail_to, this );
$( '.problem_report_reply' ).off().on( 'click', this.mail_to )
}
},
mail_to: function (){
console.log( 'this', this )
} );
ここでBackbone.Viewの私のコード。メソッドを DOM 要素にバインドする際に問題があります。console.logは、クリックした DOM 要素のように表示されます。undescore メソッド_.bindを使用してthisのバインドを修正しましたが、どのような問題がありますか?