如何使用Angular 2 rc1允许页面刷新?

时间:2016-05-25 17:18:29

标签: angular angular2-routing

Angular 2 Router (ES5) doesn't work on page reload

Angular 2.0 router not working on reloading the browser

我的目标是允许用户通过点击F5或点击浏览器上的刷新按钮来刷新页面。我不介意网址中的哈希值,如果这就是它。

根据以上链接,其他几个人尝试过相同的问题,我的问题与角度和我正在使用的版本有所不同。

上面的第二个链接描述了实现HashLocationStrategy。我在我使用的角度版本中找不到这个类(2.0.0-rc.1)。如果HashLocationStrategy实际上仍然是推荐的修复程序,我从哪里导入并使用它?如果不推荐使用HashLocationStrategy,建议的方法是什么?

1 个答案:

答案 0 :(得分:0)

// php
echo strtotime('now +10 hours');

// js 
var d = new Date();
d.setHours(d.getHours()+10);

另见Location and HashLocationStrategy stopped working in beta.16