web-dev-qa-db-ja.com

twitter bootstrap 3.0 typeahead ajaxの例

bootstrap 2、たとえばここに Twitter bootstrap typeahead ajaxの例 には、多くのtypeaheadのajaxの例があります。

ただし、私はbootstrap 3を使用しており、完全な例を見つけることができませんでした。代わりに、他のWebサイトへのリンクを含む不完全な情報スニペットがたくさんあります。たとえば、こちら Bootstrap 3 RC 1? のtypeahead JavaScriptモジュール

ユーザーが入力を変更するたびにajaxを介してサーバーからデータをロードする場合、誰かがbootstrap 3でtypeaheadを使用する方法に関する完全に機能する例を投稿してください。

25
Pascal Klein

Bootstrap3-typeaheadを使用して、次のコードで動作するようにしました。

<input id="typeahead-input" type="text" data-provide="typeahead" />

<script type="text/javascript">
jQuery(document).ready(function() {
    $('#typeahead-input').typeahead({
        source: function (query, process) {
            return $.get('search?q=' + query, function (data) {
                return process(data.search_results);
            });
        }
    });
})
</script>

バックエンドは、search GETエンドポイントの下で検索サービスを提供し、qパラメーターでクエリを受信し、{ 'search_results': ['resultA', 'resultB', ... ] }形式でJSONを返します。 search_resultsarrayの要素は、先行入力に表示されます。

40
Michael

これは、作業中のScala/PlayFrameworkアプリの typeahead examples に触発された、一歩一歩の経験です。

スクリプトでLearnerNameTypeAhead.coffeeもちろんJSに変換可能

$ ->
  learners = new Bloodhound(
    datumTokenizer: Bloodhound.tokenizers.obj.whitespace("value")
    queryTokenizer: Bloodhound.tokenizers.whitespace
    remote: "/learner/namelike?nameLikeStr=%QUERY"
  )
  learners.initialize()
  $("#firstName").typeahead 
    minLength: 3
    hint: true
    highlight:true
   ,
    name: "learners"
    displayKey: "value"
    source: learners.ttAdapter()

Typeaheadバンドルとスクリプトをページに含めましたが、次のように入力フィールドの周りにdivがあります。

<script [email protected]("javascripts/typeahead.bundle.js")></script>
<script [email protected]("javascripts/LearnerNameTypeAhead.js") type="text/javascript" ></script>
<div>
  <input name="firstName" id="firstName" class="typeahead" placeholder="First Name" value="@firstName">
</div>

結果は、最初のminLength(3)文字の後に入力フィールドに入力された各文字に対して、ページは/learner/namelike?nameLikeStr=のようなURLと現在入力された文字を使用してGETリクエストを発行します。サーバーコードは、フィールド「id」と「value」を含むオブジェクトのjson配列を返します。たとえば、次のようになります。

[ {
    "id": "109",
    "value": "Graham Jones"
  },
  {
    "id": "5833",
    "value": "Hezekiah Jones"
} ]

プレイするには、routesファイルに何かが必要です。

GET /learner/namelike controllers.Learners.namesLike(nameLikeStr:String)

そして最後に、ページの<head>(またはアクセス可能な.css)に含めた新しいtypeahead.cssファイルにドロップダウンなどのスタイルを設定しました。

.tt-dropdown-menu {
  width: 252px;
  margin-top: 12px;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
     -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
          box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
.typeahead {
  background-color: #fff;
}
.typeahead:focus {
  border: 2px solid #0097cf;
}
.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tt-hint {
  color: #999
}
.tt-suggestion {
  padding: 3px 20px;
  font-size: 18px;
  line-height: 24px;
}
.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;
}
.tt-suggestion p {
  margin: 0;
}
4
wwkudu

私はこれを使用しています https://github.com/biggora/bootstrap-ajax-typeahead

Codeigniter/PHPを使用したコードの結果

<pre>

$("#produto").typeahead({
        onSelect: function(item) {
            console.log(item);
            getProductInfs(item);
        },
        ajax: {
            url: path + 'produto/getProdName/',
            timeout: 500,
            displayField: "concat",
            valueField: "idproduto",
            triggerLength: 1,
            method: "post",
            dataType: "JSON",
            preDispatch: function (query) {
                showLoadingMask(true);
                return {
                    search: query
                }
            },
            preProcess: function (data) {

                if (data.success === false) {
                    return false;
                }else{
                    return data;    
                }                
            }               
        }
    });
</pre>   

ここで、v3にアップグレードする方法に関する情報を見つけることができます。 http://tosbourn.com/2013/08/javascript/upgrading-from-bootstraps-typeahead-to-typeahead-js/

以下もいくつかの例です。 http://Twitter.github.io/typeahead.js/examples/

1
netcult