1
我試圖設置源入引導預輸入,但我發現了以下錯誤:Twitter的引導預輸入2.1.1不能設置功能在源
typeahead.process is not a function
這裏有一個的jsfiddle說明案例:http://jsfiddle.net/NCEFR/1/
我在做什麼不當?
通知插件的版本是2.1.1
我試圖設置源入引導預輸入,但我發現了以下錯誤:Twitter的引導預輸入2.1.1不能設置功能在源
typeahead.process is not a function
這裏有一個的jsfiddle說明案例:http://jsfiddle.net/NCEFR/1/
我在做什麼不當?
通知插件的版本是2.1.1
The function is passed two arguments, the
query
value in the input field and theprocess
callback. The function may be used synchronously by returning the data source directly or asynchronously via theprocess
callback's single argument.
正確的函數參數:
var searchFunction = function(query, process) {
var result = "result1::result2".split("::");
process(result);
}