我正在开发一个两页的 AngularJS 应用程序,用户必须在进入第二页之前完成第一页。
我的 $routeProvider 设置如下:
$routeProvider.
when('/config', {templateUrl: 'views/config.html', controller: ConfigController}).
when('/levels', {templateUrl: 'views/levels.html', controller: LevelsController}).
otherwise({redirectTo: '/config'});
因此,用户最初被发送到 Config 页面,在填写了一些字段后,他们按下一个按钮并被带到 Levels 页面。问题是,如果他们在“级别”页面上刷新页面,我需要将他们带回“配置”页面以再次填写字段,然后他们才能返回“级别”页面。
有什么办法可以做到这一点?