编程语言
首页 > 编程语言> > javascript – Backbonejs下划线限制功能没有触发

javascript – Backbonejs下划线限制功能没有触发

作者:互联网

我想过滤骨干集合.因此,我想限制键盘事件并在用户完成输入或暂停时触发.

我之前的油门功能正在开火,我正在获取日志(‘节流前’).但是,实际过滤器filterByTitle未触发.有什么建议吗?

linkApp.Views.FilteredLinks = Backbone.View.extend({

    el:'#divFilter',

    events:{
        'keyup #filterTitle': "filterByTitleThrottled"
    },

    initialize:function(){          
    },

    render:function(){
    },      

    filterByTitleThrottled:function(){
        console.log('before throttle');
        _.throttle(this.filterByTitle, 100);
    },
    filterByTitle:function(){
        console.log('actual filter by title');
    }
});

解决方法:

我认为在初始化时_.throttle this.filterByTitle会更好,以使其正常工作.

initialize:function(){
      this.filterByTitle = _.throttle(this.filterByTitle, 100);
},

你会扼杀它一次,你会得到你期待的结果.

标签:javascript,underscore-js,backbone-js,backbone-events
来源: https://codeday.me/bug/20190713/1454474.html