我正在尝试使用ng-repeat
列表。但我想要使用 Django 呈现的预先存在的列表项。
注意:我已设置{[{ }]}
为我的 AngularJS InterpolateProvider。
HTML 示例
<ul ng-controller="ListController">
{% for item in existing_list %}
<li>
<span>{{item.firstName}}</span>
<span>{{item.lastName}}</span>
</li>
{% endfor %}
<li ng-repeat="item in items">
<span>{[{item.firstName}]}</span>
<span>{[{item.lastName}]}</span>
</li>
</ul>
现在,我想使用ng-controller
应用程序.js
function ListController($scope){
$scope.items = [{firstName: "Bob", lastName: "Smith"}];
}
我的问题是,如何添加 Django 生成的预先存在的列表项来加入$scope.items
?