在AngularJS中,可以从$rootScope中获取数据源,也可以把获取数据的逻辑封装在service中,然后注入到app.run函数中,或者注入到controller中。本篇就来整理获取数据的几种方式。
■ 数据源放在$rootScope中
app.run(function($rootScope){
$rootScope.todos = [
{item:"",done:true},{item:"",done:false}
];
})
$rootScope.todos = [
{item:"",done:true},{item:"",done:false}
];
})
<div ng-repeat="todo in todos">
{{todo.item}}