11

ドロップダウンメニューをロードするシンプルなselect2ボックスがあります。

しかし、AJAX呼び出しの結果で選択メニューが開かれるたびにドロップダウンメニューをリロードするための最良の方法は何ですか?ajax呼び出しは返されます

<option value=1>
<option value=2>

等々

select2ドキュメントのAJAXの例を調べましたが、必要なものが少し複雑に見えます。TIA

4

5 に答える 5

10

あなたがhtmlを持っていると仮定します

   <p>
    Hidden field value set in the following format:
    <br />
    <em>'34:Donnie Darko,54:Heat,27:No Country for Old Men'
    </em></p>
<input type='hidden' id="e6" style="width: 500px;" value="34:Donnie Darko,54:Heat,27:No Country for Old Men"  />
<br /> <button id="save">Save</button>
<p>
After it's initialised, the hidden field value will change to:<br />
<em>'34,54,27'</em>
<br />
That is the value sent to the server
</p>​

およびselect2Ajaxの場合

function MultiAjaxAutoComplete(element, url) {
    $(element).select2({
        placeholder: "Search for a movie",
        minimumInputLength: 1,
        multiple: true,
        id: function(e) { return e.id+":"+e.title; },
        ajax: {
            url: url,
            dataType: 'json',
            data: function(term, page) {

                return {
                    q: term,
                    page_limit: 10,
                    apikey: "z4vbb4bjmgsb7dy33kvux3ea" //my own apikey
                };
            },
            results: function(data, page) {
                alert(data);
                return {
                    results: data.movies
                };
            }
        },
        formatResult: formatResult,
        formatSelection: formatSelection,
        initSelection: function(element, callback) {
            var data = [];
            $(element.val().split(",")).each(function(i) {
                var item = this.split(':');
                data.push({
                    id: item[0],
                    title: item[1]
                });
            });
            //$(element).val('');
            callback(data);
        }
    });
};

function formatResult(movie) {
    return '<div>' + movie.title + '</div>';
};

function formatSelection(data) {
    return data.title;
};



MultiAjaxAutoComplete('#e6', 'http://api.rottentomatoes.com/api/public/v1.0/movies.json');

$('#save').click(function() {
    alert($('#e6').val());
});

これでmultiajax呼び出しを試してみてください!参照-http://jsfiddle.net/JpvDt/112/

于 2013-01-04T12:33:26.293 に答える
1

Select2 Web ページのLoading Remote Dataの例を参照してください。

開くたびに ajax を使用して選択リストのオプションを動的にロードします。

$("#e6").select2({
        placeholder: "Search for a movie",
        minimumInputLength: 1,
        ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
            url: "http://api.rottentomatoes.com/api/public/v1.0/movies.json",
            dataType: 'jsonp',
            data: function (term, page) {
                return {
                    q: term, // search term
                    page_limit: 10,
                    apikey: "ju6z9mjyajq2djue3gbvv26t" // please do not use so this example keeps working
                };
            },
            results: function (data, page) { // parse the results into the format expected by Select2.
                // since we are using custom formatting functions we do not need to alter remote JSON data
                return {results: data.movies};
            }
        }
    });
于 2013-01-02T12:43:19.417 に答える
0

デフォルトでプリロードされた JSON でドロップダウンを表示しようとしている場合、フィールドをクリックした瞬間に、1 文字も入力せずにデータが入力されたドロップダウンが表示されると予想されます。最小入力長を設定すると、次のように動作します魅力。

タスクが「select2を使用してJSONをフォーカスでロードする」場合と同様に、JSONをトリガーします。

コードを追加しましたが、AJAX を使用してスニペットで JSON をリモートで取得できないため、スニペットを機能させることができませんでした。

これはコードに追加したソリューションであり、以下にリストされているソリューションを使用しないでください。修正を説明するために使用します。


  $(".myContainer").select2({
    ajax: {
      url: 'myJSONpath',
      dataType: 'json',
      delay: 250,
      data: function(params) {
       return {
         q: params.term, // search term
         page: params.page
       };
      },
     minimumInputLength: 0, // so here is a trick 0 will trigger ajax call right when you click on field
     processResults: function(data, params) {
       //process your results  
     },

....そして、他のプロパティを続けます...

于 2016-09-09T17:43:58.017 に答える