最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Replace history and then redirect in AngularJS - Stack Overflow

programmeradmin0浏览0评论

While trying to access window.location or window.history directly, how can I do the following in AngularJS:

  1. Replace the history for current location
  2. Redirect to a new location

For example:

  • user goes to "/#/loc1"
  • I want the history to show they went to "/#/loc2"
  • Then redirect to "/#/loc3"
  • If they use the browser.back, it should return them to "#/loc2"

While trying to access window.location or window.history directly, how can I do the following in AngularJS:

  1. Replace the history for current location
  2. Redirect to a new location

For example:

  • user goes to "/#/loc1"
  • I want the history to show they went to "/#/loc2"
  • Then redirect to "/#/loc3"
  • If they use the browser.back, it should return them to "#/loc2"
Share Improve this question asked Oct 5, 2013 at 3:00 wag2639wag2639 2,5835 gold badges25 silver badges30 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

Is this what you want?

$location.path('/blahblah').replace();

See API Docs for $location

发布评论

评论列表(0)

  1. 暂无评论