2015-07-05 67 views
2

我正在嘗試執行遠程類型提前功能。我的遠程JSON應該如何構造?在下面的例子中,用戶爲每個項目都有一個單獨的JSON文件。請問,我必須爲我的數據創建這幾千個文件?Twitter TypeAhead.js遠程示例

https://github.com/twitter/typeahead.js/tree/gh-pages/data/films/queries

這裏是例子:

var bestPictures = new Bloodhound({ 
    datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), 
    queryTokenizer: Bloodhound.tokenizers.whitespace, 
    prefetch: '../data/films/post_1960.json', 
    remote: { 
    url: '../data/films/queries/%QUERY.json', 
    wildcard: '%QUERY' 
    } 
}); 

$('#remote .typeahead').typeahead(null, { 
    name: 'best-pictures', 
    display: 'value', 
    source: bestPictures 
}); 

回答