来自文档:
<tags-input>
<auto-complete
source="{expression}"
>
</auto-complete>
</tags-input>
表达式的结果必须是最终解析为对象数组的承诺。
$scope.loadSuperheroes = function(query) {
// An arrays of strings here will also be converted into an
// array of objects
return $http.get('superheroes.json');
};
但是我已经在 $scope 中有一个对象数组。但结构不同:
$scope.superheroes = [{"id":1, "name":"Batman"}, {"id":2, "name":"Superman"}]
如何在 html 中使用 $scope.superheroes.name 中的列表?