Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Material Design Angular md-autocomplete remote

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 help on doing auto complete via AJAX call.

like image 418
Cyril Cherian Avatar asked Apr 08 '15 10:04

Cyril Cherian


Video Answer


1 Answers

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
    })
like image 149
Alireza Mirian Avatar answered Sep 18 '22 16:09

Alireza Mirian