this.model.fetch({}) が発生している間、ロード画面をセットアップしようとしていますが、どのように呼び出すことができるかわかりません...これはイベントトリガーを使用した現在の試みですが、トリガーされていません...
search: function (e) {
console.log('searching...');
var eventL = this.vent;
e.preventDefault();
var that;
that = this.model;
//post instance to the server with the following input fields
this.model.fetch(
{data: {
channel: $('#channel').val(),
week: $('#week').val(),
year: $('#year').val(),
filter: $('#filter').val()
},
attack: this.options.vent.trigger('ok', data),
success: $.proxy(this.storeMusic, this )
});
},
可能であればデータも送り返したいので、値を検索画面に含めることができます。