[AngularJS] Store the entry url and redirect to entry url after Logged in

For example when a outside application need to visit your app address:

https://www.example.com/#/lobby/abc

But before enter ‘/lobby/abc‘, user need to login, so the application will redirect user to

https://www.example.com/#/login

Now what you want is after user logged in, you can redirect them to

https://www.example.com/#/lobby/abc

Instead of other pages like:

https://www.example.com/#/lobby

So to solve the problem, we need to do two things

1. Store the entry url

2. After logged in, redirect user to entry url

1. Store the entry ur:

angular.module(‘app‘)
     // When can get pull url by using $location.absUrl()
    // Because run block only run once for the module and app module is our main application module, so this should only store our entry url
    // To reuse the entryUrl later, we store it in LoginService
    .run(($location, LoginService) => LoginService.entryUrl = $location.absUrl())

2. After logged in, then we can redirect user to the entry url by doing:

$location.url(LoginService.entryUrl)

原文地址:https://www.cnblogs.com/Answer1215/p/9589788.html

时间: 2024-10-10 15:48:05

[AngularJS] Store the entry url and redirect to entry url after Logged in的相关文章

Yii url createUrl redirect相关

一篇文章: 在yii中明明白白生成网址: 在Yii中经常要生成URL,不管是为了自动跳转还是仅仅是一个链接.下面对Yii中的URL生成做了一个总结.提示:以下controllerX代表控制器X,actionX代表方法X.在Controller::action中,我们要输出一个链接,可以这样做:$this->createUrl(‘actionName’, array(‘params01′=>’value01′, ‘params02′=>’value02′) );//Controller::

jQuery: Redirect to other URL

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> </head&g

[转]window.location方法获取URL及window.location.assign(url)和replace(url)区别

本文转自:http://blog.csdn.net/chendi1985/article/details/5291773 window.location方法获取URL 统一资源定位符 (Uniform Resource Locator, URL) 完整的URL由这几个部分构成: scheme://host:port/path?query#fragment scheme:通信协议 常用的http,ftp,maito等 host:主机 服务器(计算机)域名系统 (DNS) 主机名或 IP 地址. p

UrlUtils工具类,Java URL工具类,Java URL链接工具类

UrlUtils工具类,Java URL工具类,Java URL链接工具类 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ?Copyright 蕃薯耀 2017年7月15日 http://www.cnblogs.com/fanshuyao/ Java代码   import java.util.Ha

Tips/Tricks#5:利用URL重写隐藏复杂的URL

注:此系列记录在我实际开发中遇到的问题和收藏一些技巧文章. 本篇技巧和诀窍记录的是:利用URL重写隐藏复杂的URL,非常简单的技巧,我相信大家都知道. 这个场景太常见了,当然有许多许多的方法,我来介绍一种非常简单的方法吧! 第一步:模拟映射页面 我们想在一个页面上点击guid.html链接,跳转到比较复杂URL的guid_{492f3e0b-848e-11da-9550-00e08161165f}.html页面.即定义一个映射,该映射隐藏实际的URL并将其映射到用户更容易记忆的URL. 第二步:

Java URL对象初始化以及通过URL读取内容

一.URL层次. URL对象的创建. 1.public URL(String spec); URL urlbase=new URL("http://my.oschina.net/u/2308739/admin/new-blog.html"); 2.public URL(URL context,String spec); URL urlbase=new URL("http://my.oschina.net/u/2308739/admin/"); URL indexUr

url解析方法 javascript获取url参数值

今天写项目碰到一个分析url code_id 的值,以为用split()就可以,但是参数没有规律,百度了下好多方法,新技能get 方法一.正则分析法: 方法 function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).

Bitmap转为本地URL并存在Card && 本地URL转Bitmap

附各种转换: http://glblong.blog.51cto.com/3058613/1304090 这里要申明权限: <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> bitmap转本地URL: public static String getSDPath() { File sdDir = null; boolean sdCardExist = Environmen

SharePoint 2010 Url Shortener --SharePoint 2010 短URL生成器

SharePoint 2010 Url Shortener --SharePoint 2010 短URL生成器 项目描写叙述 本项目加入了这种功能.在SP站点中能够生成短URLs. 这些URLs指向列表或文档. 比如http://smallville-pc/url/nnefhmo. 本项目的目的是同意用户创建短URLs.指向文档或列表/库,这样能够轻松分享. wsp下载地址(免积分) SharePoint 2010 短URL生成器 部署方法 參照部署.收回和删除解决方式----STSADM和Po