我想要做的是通过 Ajax 获取一个 json 对象,并用一种值填充 Bootstrap Typeahead。
这是我的代码:
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 为空的错误
我也尝试过.parseJSON()
但没有成功:
$.each($.parseJSON(data), function () {
arr.push(this.Name);
});
我该怎么做才能在 Typeahed 中只显示我的 Json 对象的值名称?
如果在 Ajax Success 我把alert(JSON.stringify(data));
它正确地提醒我的 Json 对象。