In material design autocomplete(https://material.angularjs.org/#/demo/material.components.autocomplete) All examples show how to get data from local variable. There is no he
You just need to use a function that returns a promise in md-items
. See this plunk: http://plnkr.co/edit/KFQg53ZVfPAMum0dFctK?p=preview
NOTE: Returned promises from $http
will be resolved with an object that has the data. So you have to do something like this:
return $http.get(url).then(function(response){
return response.data.someOtherPathMaybe; // usually response.data
})