当前位置: 首页 > 文档资料 > AppJS 中文文档 >

9、Restore stack

优质
小牛编辑
134浏览
2023-12-01

因为app.js知道您的导航堆栈以及如何构造页面,所以它还提供了自动恢复用户会话的能力,使其恢复到上次关闭时的位置。启用这个特性需要以下的习语:

// in your apps main method
try {
  // try to restore previous session
  App.restore();
} catch (err) {
  // else start from scratch
  App.load('home');
}

下面是一个例子,说明如果最后一个会话在最后5分钟内,如何只恢复堆栈。

try {
  App.restore({ maxAge: 5*60*1000 });
} catch (err) {
  App.load('home');
}

注意:maxAge是以毫秒为间隔的。

单独的页面可以防止自己被恢复(例如,如果它们是模态的)。

App.controller('page2', function (page) {
    this.restorable = false;
});

page2和堆栈前面的任何页面都不会恢复(但是以前的页面将会)。