如何在iframe中为角度应用重新加载网页?

时间:2015-09-08 07:29:20

标签: javascript angularjs facebook iframe

我在Facebook画布中加载了一个角度应用程序。当我刷新页面时,角度应用程序每次都会在/加载根网址。如果我导航到另一条路线并重新加载页面,我如何保持状态?

我使用的库是AngularJS和UI路由器。

这是一个例子

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />

    <title>Test</title>

  </head>
<body>

  <iframe src="http://christopherthielen.github.io/ui-router-extras/example/sticky/index.html" height="1500" width="1500" frameborder="0"></iframe>


</body>
</html>

1 个答案:

答案 0 :(得分:2)

创建会话cookie或限时cookie,在状态更改时保存当前状态 - 在页面加载时检查cookie - 如果存在则导航到所需状态。