16

私がやろうとしているのは、Ajaxを介してjsonオブジェクトを取得し、BootstrapTypeaheadに1種類の値だけを入力することです。

これが私のコードです:

nameTypeHead: function () {
        var _self = this,
            searchInput = $('#nameTypeHead'),
            arr = [];

        function getArray() {
            $.ajax({
                url: '/Home/AutoComplete',
                type: 'post',
                dataType: 'json',
                data: { searchText: searchInput.val() },
                success: function (data) {
                    $.each(data, function () {
                        arr.push(this.Name);
                    });
                    return arr;
                }
            });
        }

        searchInput.typeahead({
            source: getArray()
        });
    } 

arrがnullであるというエラーを受け取ります

私も試してみまし.parseJSON()たが、成功しませんでした:

$.each($.parseJSON(data), function () {
   arr.push(this.Name);
});

TypeahedでJsonオブジェクトの名前の値だけを表示するにはどうすればよいですか?

Ajaxが成功した場合alert(JSON.stringify(data));、Jsonオブジェクトに正しくアラートを送信します。

4

3 に答える 3

33

私は最初からそれを作りました:

$('#typeahead').typeahead({

    source: function (query, process) {
        return $.getJSON(
            'path/to/lookup',
            { query: query },
            function (data) {
                return process(data);
            });
    }

});

data次のような単純なJSON配列はどこにありますか。

 [
   "John",
   "Jane",
   "Alfredo",
   "Giovanni",
   "Superman"
 ]

配列の構造が異なる場合は、メソッドdataに渡す前に配列を再配置してください。process()

ここで実際の例を見つけることができます。

編集-jsonデータに基づく:

[
    {'id':'0', 'name':'John'},
    {'id':'1', 'name':'Jane'}, 
    {'id':'2', 'name':'Alfredo'},
    ...
}

getJSONコールバックは次のようになります。

function (data) {

    var newData = [];

    $.each(data, function(){

        newData.push(this.name);

    });

    return process(newData);

}); 
于 2012-09-27T13:15:28.970 に答える
7

この要点を確認してください。オートコンプリートを実行し、高速タイパーとキャッシュを処理します

https://gist.github.com/mrgcohen/5062352

于 2013-03-01T04:18:20.130 に答える
3

これは私のために働いたものです:-

HTMLセットアップ:

<!-- HTML Setup-->
<input type="text" id="my-typeahead" />

Javascript:

/* 
example remote-data-source
[
  {
    id:1,
    name:'Batman'
  },{
    id:2,
    name:'Superman'
  } 
]
*/

$('#my-typeahead').typeahead({
    hint: true,
    highlight: true,
    minLength: 1
}, {
    name: 'myDataset',
    source: function(str, sync, async) {
        // abstracting out the "REST call and processing" in a seperate function
        restCall(str, async);
    },
    templates: {
        suggestion: function(user) {
            return '<div>' + user.name + '</div>';
        },
        pending: '<div>Please wait...</div>'
    }
});

// The function that will make the REST call and return the data
function restCall(str, async) {
    return $.ajax('http://url-for-remote-data-source/query?name=' + str, {
        // headers and other setting you wish to set-up
        headers: {
            'Content-Type': 'application/json',
        },
        // response
        success: function(res) {
            //processing data on response with 'async'
            return async(res.data);
        }
    });
}

参照:

Typeahead Docs - Datasetshttps ://github.com/twitter/typeahead.js/blob/master/doc/jquery_typeahead.md#datasets

Jquery **$.ajax()**https ://api.jquery.com/jquery.ajax/

幸運を。

于 2016-07-11T06:59:10.497 に答える