AngularJS autocomplete dropdown show previous api response
I have not used AngularJS for quite a while, now, for some legacy project, I have to start using it again. One requirement is I have to provide auto-complete, below is the HTML:
<md-autocomplete
ng-if="!enteredJd.id"
ng-disabled="ctrl.isDisabled" md-no-cache="ctrl.noCache"
md-selected-item="ctrl.selectedItem"
md-search-text-change="ctrl.searchTextChange(ctrl.searchText)"
md-search-text="ctrl.searchText"
md-selected-item-change="ctrl.selectedItemChange(item)"
md-items="item in ctrl.searchedCompanies"
md-item-text="item"
md-min-length="0"
placeholder="Enter hiring company name">
<md-item-template>
<span md-highlight-text="ctrl.searchText" md-highlight-flags="^i">item</span>
</md-item-template>
</md-autocomplete>
And this is the JS:
self.isDisabled = false;
self.searchedCompanies = ;
self.selectedItemChange = selectedItemChange;
self.searchTextChange = searchTextChange;
self.querySearch = querySearch;
function searchTextChange(text)
console.log('searching:', text);
$scope.enteredJd.companyName = text;
$http.defaults.headers.post["Content-Type"] = "application/json";
var body =
type: 'company',
term: text
;
$http.post("/api/search",body).then(function(resp)
self.searchedCompanies = ;
resp.data.forEach(function(item)
self.searchedCompanies.push(item.standardName);
);
console.log(self.searchedCompanies)
);
but when I test it, I found something weird.
The dropdown only display previous API response result, not current one. This behavior is so strange, I debugged that Api response is correct, once api returned, I assign it to searchedCompanies, ideally when i update this variable, dropdown options should be updated accordingly, but why when it is updated, it is displaying previous api response and current api response will be displayed during next api response?
Thanks and like to hear your analysis for this.
I followed the demo, it seemed to have this :
md-items="item in ctrl.querySearch(ctrl.searchText)"
but when I used this one, it never arrived, how is that?
angularjs autocomplete angular1.6
add a comment |
I have not used AngularJS for quite a while, now, for some legacy project, I have to start using it again. One requirement is I have to provide auto-complete, below is the HTML:
<md-autocomplete
ng-if="!enteredJd.id"
ng-disabled="ctrl.isDisabled" md-no-cache="ctrl.noCache"
md-selected-item="ctrl.selectedItem"
md-search-text-change="ctrl.searchTextChange(ctrl.searchText)"
md-search-text="ctrl.searchText"
md-selected-item-change="ctrl.selectedItemChange(item)"
md-items="item in ctrl.searchedCompanies"
md-item-text="item"
md-min-length="0"
placeholder="Enter hiring company name">
<md-item-template>
<span md-highlight-text="ctrl.searchText" md-highlight-flags="^i">item</span>
</md-item-template>
</md-autocomplete>
And this is the JS:
self.isDisabled = false;
self.searchedCompanies = ;
self.selectedItemChange = selectedItemChange;
self.searchTextChange = searchTextChange;
self.querySearch = querySearch;
function searchTextChange(text)
console.log('searching:', text);
$scope.enteredJd.companyName = text;
$http.defaults.headers.post["Content-Type"] = "application/json";
var body =
type: 'company',
term: text
;
$http.post("/api/search",body).then(function(resp)
self.searchedCompanies = ;
resp.data.forEach(function(item)
self.searchedCompanies.push(item.standardName);
);
console.log(self.searchedCompanies)
);
but when I test it, I found something weird.
The dropdown only display previous API response result, not current one. This behavior is so strange, I debugged that Api response is correct, once api returned, I assign it to searchedCompanies, ideally when i update this variable, dropdown options should be updated accordingly, but why when it is updated, it is displaying previous api response and current api response will be displayed during next api response?
Thanks and like to hear your analysis for this.
I followed the demo, it seemed to have this :
md-items="item in ctrl.querySearch(ctrl.searchText)"
but when I used this one, it never arrived, how is that?
angularjs autocomplete angular1.6
add a comment |
I have not used AngularJS for quite a while, now, for some legacy project, I have to start using it again. One requirement is I have to provide auto-complete, below is the HTML:
<md-autocomplete
ng-if="!enteredJd.id"
ng-disabled="ctrl.isDisabled" md-no-cache="ctrl.noCache"
md-selected-item="ctrl.selectedItem"
md-search-text-change="ctrl.searchTextChange(ctrl.searchText)"
md-search-text="ctrl.searchText"
md-selected-item-change="ctrl.selectedItemChange(item)"
md-items="item in ctrl.searchedCompanies"
md-item-text="item"
md-min-length="0"
placeholder="Enter hiring company name">
<md-item-template>
<span md-highlight-text="ctrl.searchText" md-highlight-flags="^i">item</span>
</md-item-template>
</md-autocomplete>
And this is the JS:
self.isDisabled = false;
self.searchedCompanies = ;
self.selectedItemChange = selectedItemChange;
self.searchTextChange = searchTextChange;
self.querySearch = querySearch;
function searchTextChange(text)
console.log('searching:', text);
$scope.enteredJd.companyName = text;
$http.defaults.headers.post["Content-Type"] = "application/json";
var body =
type: 'company',
term: text
;
$http.post("/api/search",body).then(function(resp)
self.searchedCompanies = ;
resp.data.forEach(function(item)
self.searchedCompanies.push(item.standardName);
);
console.log(self.searchedCompanies)
);
but when I test it, I found something weird.
The dropdown only display previous API response result, not current one. This behavior is so strange, I debugged that Api response is correct, once api returned, I assign it to searchedCompanies, ideally when i update this variable, dropdown options should be updated accordingly, but why when it is updated, it is displaying previous api response and current api response will be displayed during next api response?
Thanks and like to hear your analysis for this.
I followed the demo, it seemed to have this :
md-items="item in ctrl.querySearch(ctrl.searchText)"
but when I used this one, it never arrived, how is that?
angularjs autocomplete angular1.6
I have not used AngularJS for quite a while, now, for some legacy project, I have to start using it again. One requirement is I have to provide auto-complete, below is the HTML:
<md-autocomplete
ng-if="!enteredJd.id"
ng-disabled="ctrl.isDisabled" md-no-cache="ctrl.noCache"
md-selected-item="ctrl.selectedItem"
md-search-text-change="ctrl.searchTextChange(ctrl.searchText)"
md-search-text="ctrl.searchText"
md-selected-item-change="ctrl.selectedItemChange(item)"
md-items="item in ctrl.searchedCompanies"
md-item-text="item"
md-min-length="0"
placeholder="Enter hiring company name">
<md-item-template>
<span md-highlight-text="ctrl.searchText" md-highlight-flags="^i">item</span>
</md-item-template>
</md-autocomplete>
And this is the JS:
self.isDisabled = false;
self.searchedCompanies = ;
self.selectedItemChange = selectedItemChange;
self.searchTextChange = searchTextChange;
self.querySearch = querySearch;
function searchTextChange(text)
console.log('searching:', text);
$scope.enteredJd.companyName = text;
$http.defaults.headers.post["Content-Type"] = "application/json";
var body =
type: 'company',
term: text
;
$http.post("/api/search",body).then(function(resp)
self.searchedCompanies = ;
resp.data.forEach(function(item)
self.searchedCompanies.push(item.standardName);
);
console.log(self.searchedCompanies)
);
but when I test it, I found something weird.
The dropdown only display previous API response result, not current one. This behavior is so strange, I debugged that Api response is correct, once api returned, I assign it to searchedCompanies, ideally when i update this variable, dropdown options should be updated accordingly, but why when it is updated, it is displaying previous api response and current api response will be displayed during next api response?
Thanks and like to hear your analysis for this.
I followed the demo, it seemed to have this :
md-items="item in ctrl.querySearch(ctrl.searchText)"
but when I used this one, it never arrived, how is that?
angularjs autocomplete angular1.6
angularjs autocomplete angular1.6
edited Nov 13 '18 at 10:59
georgeawg
32.9k104968
32.9k104968
asked Nov 13 '18 at 7:59
user3006967user3006967
74331938
74331938
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276319%2fangularjs-autocomplete-dropdown-show-previous-api-response%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276319%2fangularjs-autocomplete-dropdown-show-previous-api-response%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown