最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery Autocomplete Plugin using Backbone JS - Stack Overflow

programmeradmin0浏览0评论

Let's suppose I want to use jQueryUi for implemeting autoplete in a backboneView having a form.

I implement the following code (*), but I don't like it because the fetching of the collection is performed also when the user does not type any letter.

How should I perform the fetching collection only when the user starts to type something in the input box?

var MyView = Backbone.View.extend({
    initialize: function () {
        this.myCollection = new MyCollection();
        this.myCollection.fetch(); // I would like to fetch the collection 
                                   // only when the user start to type the first letter  
    },
    events: {
        'focus #names': 'getAutoplete'
    },

    getAutoplete: function () {
        $("#names").autoplete({
            source: JSON.stringify(this.myCollection)
        });
    }
});

P.S.:
the fetching should be performed just one time when the user types the first letter.

Let's suppose I want to use jQueryUi for implemeting autoplete in a backboneView having a form.

I implement the following code (*), but I don't like it because the fetching of the collection is performed also when the user does not type any letter.

How should I perform the fetching collection only when the user starts to type something in the input box?

var MyView = Backbone.View.extend({
    initialize: function () {
        this.myCollection = new MyCollection();
        this.myCollection.fetch(); // I would like to fetch the collection 
                                   // only when the user start to type the first letter  
    },
    events: {
        'focus #names': 'getAutoplete'
    },

    getAutoplete: function () {
        $("#names").autoplete({
            source: JSON.stringify(this.myCollection)
        });
    }
});

P.S.:
the fetching should be performed just one time when the user types the first letter.

Share Improve this question asked Jul 10, 2012 at 12:34 Lorraine BernardLorraine Bernard 13.5k23 gold badges85 silver badges138 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

This should work and only call fetch once.

var MyView = Backbone.View.extend({
  initialize: function () {
    this.myCollection = new MyCollection();
    this.collectionFetched = false;
  },
  events: {
    'focus #names': 'getAutoplete'
    'keydown #names': 'fetchCollection'
  },
  fetchCollection: function() {
    if (this.collectionFetched) return;
    this.myCollection.fetch();
    this.collectionFetched = true;
  },
  getAutoplete: function () {
    $("#names").autoplete({
        source: JSON.stringify(this.myCollection)
    });
  }
});

try like this :

var MyView = Backbone.View.extend({
    initialize: function () {
        this.myCollection = new MyCollection();

    },
    events: {
        'focus #names': 'getAutoplete',
        'keydown #names':'invokefetch'
    },
    invokefetch : function(){
       this.myCollection.fetch(); 
       $("#names").unbind( "keydown", invokefetch);
    },    
    getAutoplete: function () {
        $("#names").autoplete({
            source: JSON.stringify(this.myCollection)
        });
    }
});
发布评论

评论列表(0)

  1. 暂无评论