うまくいけば、これは以下の重複ではありません:なぜ Bloodhound.get() は undefined を返すのですか?
typeahead.js バージョン 0.10.0にアップグレードしました。以前のバージョンでは、提案が適切に返されていました。今、私はundefined
以下のコードでリターンを得ています:
// instantiate the bloodhound suggestion engine
var engine = new Bloodhound({
datumTokenizer: function (d) { return [d]; },
queryTokenizer: Bloodhound.tokenizers.whitespace,
local: ["(A)labama", "Alaska", "Arizona", "Arkansas"]
});
// initialize the bloodhound suggestion engine
engine.initialize();
$('#typeahead').typeahead(null, {
source: engine.ttAdapter()
});
これが私のフィドルです:http://jsfiddle.net/ucUcn/6/
なぜこれが起こっているのですか?