0
這是我的HTML代碼預輸入不能夠獲取從API數據angularjs
<input type="text" ng-model="ngModelOptionsSelected"
placeholder="Enter Story Title"
ng-model-options="modelOptions"
ng-change="onChangeFunction()"
typeahead-on-select="typeaheadOnSelectFunction()"
uib-typeahead="document as document.Name for document in getStory($viewValue)"
class="form-control">
這是我的.js代碼
$scope.getStory = function (val) {
storyService.GetStoryByName(cacheService.project.projectId,val).success(function (data) {
if (data.ResponseStatus) {
debugger;
return data.ResponseData;
} else {
//On failure
toastr.error(data.ErrorData.Error);
}
});
};
函數輸出返回像 ResponseData =
[{"Id":211380.0,"Name":"dixit"},{"Id":211488.0,"Name":"dixit ade"},{"Id":251541.0,"Name":"dixit"},{"Id":842671.0,"Name":"dixit"},{"Id":842672.0,"Name":"dixit choksi"}]
數據
但我無法綁定鍵入數據。
請幫我,我卡住了。 謝謝
你能分享控制檯錯誤嗎? –
@Ritwik Sen沒有關於CONSOL的錯誤。 – Dixit