返回介绍

How to use remoteFilter

发布于 2019-05-19 12:51:24 字数 1838 浏览 1249 评论 0 收藏 0

Normal Usage

If remoteFilter is set as a function, At.js will invoke it if local filter can not find any data so, At.js will always invoke remoteFilter with matched string and then you can use it to fetch data from server by the matched string:

$('#inputor').atwho({
  at: "@",
  callbacks: {
  /*
   If function is given, At.js will invoke it if local filter can not find any data
   @param query [String] matched query
   @param callback [Function] callback to render page.
  */
  remoteFilter: function(query, callback) {
    $.getJSON("/users.json", {q: query}, function(data) {
    callback(data.usernames)
    });
  }
  }
});

Caching example

Here is an example how I implement caching with this plugin. Hope its useful for folks here...

var cachequeryMentions = [], itemsMentions,
searchmentions = $('textarea').atwho({
  at: "@",
  callbacks: {
      remoteFilter: function (query, render_view) {
        var thisVal = query,
        self = $(this);
        if( !self.data('active') && thisVal.length >= 2 ){
          self.data('active', true);              
          itemsMentions = cachequeryMentions[thisVal]
          if(typeof itemsMentions == "object"){
            render_view(itemsMentions);
          }else
          {              
            if (self.xhr) {
              self.xhr.abort();
            }
            self.xhr = $.getJSON("/getmentions",{
              term: thisVal
            }, function(data) {
              cachequeryMentions[thisVal] = data
              render_view(data);
            });
          }              
          self.data('active', false);              
        }          
      }
    }
  });
});

Hope it helps!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文