材料设计自动完成(
https://material.angularjs.org/#/demo/material.components.autocomplete)
所有示例显示如何从局部变量获取数据.
通过AJAX调用完成自动完成没有任何帮助.
所有示例显示如何从局部变量获取数据.
通过AJAX调用完成自动完成没有任何帮助.
你只需要使用一个在md-items中返回承诺的函数.看到这个plunk:
http://plnkr.co/edit/KFQg53ZVfPAMum0dFctK?p=preview
原文链接:https://www.f2er.com/angularjs/143023.html注意:从$http返回的承诺将使用具有数据的对象来解决.所以你必须这样做:
return $http.get(url).then(function(response){ return response.data.someOtherPathMaybe; // usually response.data })