0
我試圖設置Typeahead.js,用作我的Laravel應用程序的自動提示功能。不幸的是,它每次都沒有返回結果。Typeahead和Laravel不返回任何結果
我事先返回數據以利用本地存儲,所以在我的實例中沒有查詢數據庫。
路線:
Route::get('/', function() {
return view('welcome', ['treatments' => Treatment::orderBy('treatment')
->pluck('treatment', 'id')]);
});
Welcome視圖:
const treatments = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.whitespace,
queryTokenizer: Bloodhound.tokenizers.whitespace,
local: '{{$treatments}}'
});
$('#bloodhound').typeahead({
hint: true,
highlight: true,
minLength: 1
},
{
name: 'treatments',
source: treatments,
templates: {
empty: [
'<div class="list-group search-results-dropdown"><div class="list-group-item">Nothing found.</div></div>'
],
header: [
'<div class="list-group search-results-dropdown">'
]
}
}).on('typeahead:selected', function (evt, item) {
$('#bloodhound').text(item.id);
});
輸入字段:
<input type="search" name="treatment" id="bloodhound" class="form-control"
placeholder="Find a treatment" autocomplete="off" required>
輸出$treatments
陣列:
local: '{"2":"Treatment 1"}'
腳本的最後部分中,應該輸入的輸入字段內的選擇(ID)的值,但不幸的是,不能正常工作。
非常感謝。
謝謝您的回覆,避免了引號逃逸現在生產的東西更有意義:本地:「{ 「2」: 「處理1」 }}'雖然當我搜索它@u_mulder時仍然無法找到? – Ben
從視圖中'$ treatments'的開頭和結尾刪除單引號。 –
'本地:{!! $治療!!}'是我現在在腳本中的。這是你的意思@u_mulder? – Ben