0
データベースからデータを動的にフェッチする必要があります。 typeahead
の例を試してみましたが、リモート実装をどのように実装できるかわかりません。リモートスクリプトからデータを取得する
<div id="remote">
<input class="typeahead" type="text" placeholder="Oscar winners for Best Picture">
</div>
$('#the-basics .typeahead').typeahead({
hint: true,
highlight: true,
minLength: 1
},
{
name: 'states',
source: substringMatcher(states)
});
これには、アレイstates
がローカルに存在する必要があります。しかし、私はサーバー側のスクリプトからデータを取得する必要があります。どうすればこのことができますか?
例を試してみてください - https://twitter.github.io/typeahead.js/examples/#remote – Dekay
@Dekayここで 'source:bestPictures'とは何ですか? –
これは 'Bloodhound'オブジェクトを作成する変数の名前です...この' Bloodhound'オブジェクトはあなたのデータにどのようにアクセスするかを記述します – Dekay