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

javascript - Typeahead.js - suggestion is not a function - Stack Overflow

programmeradmin0浏览0评论

After long struggles with Twitters typeahead.js, I'm finally at the point where I get to decide which template I should use for my suggestions.

But although this would seem like a straight-forward procedure, I get the following error:

Uncaught TypeError: g.templates.suggestion is not a function

My code looks like this

HTML:

<input id = "search" type="text" placeholder="Colors">

Javascript:

var colors = ["red", "blue", "green", "yellow", "brown", "black"];

var colorsource = new Bloodhound({
  datumTokenizer: Bloodhound.tokenizers.whitespace,
  queryTokenizer: Bloodhound.tokenizers.whitespace,
  // `states` is an array of state names defined in "The Basics"
  local: colors
});

$('#search').typeahead({
  hint: true,
  highlight: true,
  minLength: 1
},
{
  name: 'color',
  source: colorsource,
  templates: {
  empty: [
    '<div class="empty-message">',
      'unable to find any Best Picture winners that match the current query',
    '</div>'
  ].join('\n'),
  suggestion: '<div>{{color}}</div>'
}
});

I've seen examples where Handlebars.js is being used to pile the template, but I'm planning on using variables from Angular.js in my suggestions, so I don't want to do that.

Any suggestions on how this problem can be solved would be appreciated.

After long struggles with Twitters typeahead.js, I'm finally at the point where I get to decide which template I should use for my suggestions.

But although this would seem like a straight-forward procedure, I get the following error:

Uncaught TypeError: g.templates.suggestion is not a function

My code looks like this

HTML:

<input id = "search" type="text" placeholder="Colors">

Javascript:

var colors = ["red", "blue", "green", "yellow", "brown", "black"];

var colorsource = new Bloodhound({
  datumTokenizer: Bloodhound.tokenizers.whitespace,
  queryTokenizer: Bloodhound.tokenizers.whitespace,
  // `states` is an array of state names defined in "The Basics"
  local: colors
});

$('#search').typeahead({
  hint: true,
  highlight: true,
  minLength: 1
},
{
  name: 'color',
  source: colorsource,
  templates: {
  empty: [
    '<div class="empty-message">',
      'unable to find any Best Picture winners that match the current query',
    '</div>'
  ].join('\n'),
  suggestion: '<div>{{color}}</div>'
}
});

I've seen examples where Handlebars.js is being used to pile the template, but I'm planning on using variables from Angular.js in my suggestions, so I don't want to do that.

Any suggestions on how this problem can be solved would be appreciated.

Share Improve this question asked Aug 17, 2015 at 9:11 martinmartin 1,9744 gold badges39 silver badges70 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 15

You suggestion options must be a function that returns the HTML, e.g.

...
suggestion: function(e) { return ('<div>' + e.value + '</div>'); }
...

I am following @potatopeelings but the suggestions not appear.

Here is my code

$(document).ready(function () {
    $("#penilai").typeahead({
        source: function (query, process) {
            var countries = [];
            map = {};

            return $.post('/Evaluation/JsonSenaraiPenilai', { query: query }, function (data) {
                $.each(data, function (i, country) {
                    map[country.Evaluator_name] = country;
                    countries.push(country.Evaluator_name);
                });
                process(countries);
            });
        },
        templates: {
            empty: [
                '<div class="empty-message">',
                'unable to find any Best Picture winners that match the current query',
                '</div>'
            ].join('\n'),
            suggestion: function (e) { return ('<div>' + e.Evaluator_name + '-' + e.Evalator_staf_no + '</div>'); }
        },
        updater: function (item) {
            var selectedShortCode = map[item].Evalator_staf_no;
            $("#evalutor").val(selectedShortCode);
            return item;
        }
    });
});
发布评论

评论列表(0)

  1. 暂无评论