鉴于这个url结构(我无法控制),如何使用Angular2检索哈希片段?
http://your-redirect-uri#access_token=ACCESS-TOKEN
我的路由器确实路由到正确的组件,但oauth
之后的所有内容都被废弃了,我无法在request.params或location.path中找到哈希片段。注定??
路由器配置:
@RouteConfig([
{path: '/welcome', name: 'Welcome', component: WelcomeComponent, useAsDefault: true},
{path: '/landing/oauth', name: 'Landing', component: LandingComponent} // this one
])
答案 0 :(得分:33)
对于那些仍在寻找的人:
import { ActivatedRoute } from '@angular/router';
export class MyComponent {
constructor(
private route: ActivatedRoute,
) { }
myfunction(){
this.route.fragment.subscribe((fragment: string) => {
console.log("My hash fragment is here => ", fragment)
})
}
}
答案 1 :(得分:9)
为了扩展当前的答案,我想解决一种简单的方法来解析哈希中的查询参数(特别是针对联合响应),因为v===null || v===0 || !!v //null, 0 and anything not falsey, but not undefined etc.
似乎不是本机处理的。>
ActivatedRoute
首先使用片段创建一个新的URLSearchParams对象,以查询其值:
this.route.fragment.subscribe(fragment => {
const response = _.fromPairs(Array.from(new URLSearchParams(fragment)));
response.access_token;
response.id_token;
response.expires_in;
response.token_type;
});
在大多数情况下,这可能是所需的全部,但是如果需要将其转换为对象,new URLSearchParams(fragment).get('access_token');
会将Array.from
转换为看起来像URLSearchParams
的数组。然后lodash的[['key', 'value'], ...]
将此转换为对象。
答案 2 :(得分:1)
通过response_type
= token
请求OAuth服务器以及重定向到%REDIRECT_URI%#access_token=:access_token&token_type=:token_type&expires_in=:expires_in
的用户,我遇到了同样的问题。
问题是,默认情况下,不会路由对子网址的直接访问:在您的情况下,%BASE_URL%/landing/oauth
不会重定向到LandingComponent
组件。
我用这个配置修复了它:
import { bootstrap } from '@angular/platform-browser-dynamic';
import { provide } from '@angular/core';
import { APP_BASE_HREF } from '@angular/common';
import { ROUTER_PROVIDERS } from '@angular/router';
import { AppComponent } from './components/app/app.component';
bootstrap(AppComponent, [
ROUTER_PROVIDERS,
provide(APP_BASE_HREF, { useValue: '/' }) // this line
]);
答案 3 :(得分:1)
您也可以使用ActivatedRouteSnapshot,而无需预订所有更改。
@Component({templateUrl:'./my-component.html'})
class MyComponent {
constructor(route: ActivatedRoute) {
const fragment: string = route.snapshot.fragment;
}
}
答案 4 :(得分:1)
假设您在构造函数中使用 ActivatedRoute 类,请尝试以下操作:
let params = this.route.snapshot.fragment;
const data = JSON.parse(
'{"' +
decodeURI(params)
.replace(/"/g, '\\"')
.replace(/&/g, '","')
.replace(/=/g, '":"') +
'"}'
);
console.log(data); // { json: "with your properties"}
答案 5 :(得分:0)
我已经从nwayve获得了评论,并使用RxJS管道将其实现为:
this.route.fragment
.pipe(
map(fragment => new URLSearchParams(fragment)),
map(params => ({
access_token: params.get('access_token'),
id_token: params.get('id_token'),
error: params.get('error'),
}))
)
.subscribe(res => console.log('', res));
答案 6 :(得分:0)
您可以使用以下代码随时获取url片段-该代码利用了Router
服务:
const urlTree = this.router.parseUrl(this.router.url);
console.log(urlTree.fragment); //access_token=ACCESS-TOKEN
答案 7 :(得分:0)
使用纯JavaScript解析片段数据的选项是
this.activatedRoute.fragment.subscribe(value => {
let fragments = value.split('&')
let fragment = {}
fragments.forEach(x => {
let y = x.split('=')
fragment[y[0]] = y[1]
})
})
信息将采用易于访问的对象形式。
答案 8 :(得分:0)
我试过了,但快照是一个空字符串。 https://stackoverflow.com/a/51286916/569302
这对我有用:
ngOnInit(): void {
this.route.fragment.subscribe({
next: value => {
if (value === null) {
throw new Error('not implemented');
}
const access_token = new URLSearchParams(value).get('access_token')
console.log({access_token})
}
});
}