在TodoMVC angularjs应用程序中,在路由器配置的resolve方法中执行从存储器的初始提取。如果只在角度应用程序中使用控制器而不是路由器,该怎么做呢?
var routeConfig = {
controller: 'TodoCtrl',
templateUrl: 'todomvc-index.html',
resolve: {
store: function (todoStorage) {
// Get the correct module (API or localStorage).
return todoStorage.then(function (module) {
module.get(); // Fetch the todo records in the background.
return module;
});
}
}
};