没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论


















Angular 利用路由跳转到指定页面的指定位置方法利用路由跳转到指定页面的指定位置方法
今天小编就为大家分享一篇Angular 利用路由跳转到指定页面的指定位置方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
之前做过页面内的跳转,比较简单,最近项目需要实现跨页面跳转,并跳转到指定地点,试了很多方法,有用到传递参数然后让页面滚动相应的距离,但是一旦文章长短发生变化,滚动的距离也需要重
新计算,比较麻烦,所以最后总结出这两种比较靠谱的方法,只需要在需要跳转的地方加上合适的id就行,原理和单页面内跳转相似。
detail.component.html
<p>You'll see which payment methods are available to you on the checkout page, before you submit a reservation request. After you select your country, all of your payment details will be shown.</p>
<p id="readMore">We charge featured guide who offer journey a 15% service fee. The amount of the service fee is calculated from the price that featured guide set for their journey. You will see the service fee when you set your price before submitting a journey. The service fee is automatically deducted from the payout to the Host.
Depending on the laws of the jurisdiction involved, VAT may be charged on top of the service fee. The service fee will include these VAT charges when applicable.</p>
app.component.html
<button (click)="readMore()">ReadMore</button>
app.route.ts
{ path: '',component: LoginComponent},
{ path: 'detail', component: DetailComponent },
{ path: '**',component: NotFoundComponent}
方法一:新增路由地址来实现方法一:新增路由地址来实现
app.route.ts
{ path: '',component: LoginComponent},
{ path: 'detail', component: DetailComponent },
{ path: 'detail#readMore',component: NotFoundComponent},
{ path: '**',component: NotFoundComponent}
app.component.ts
readMore() {
this.router.navigateByUrl('/detail#readMore');
}
detail.component.ts
ngOnInit() {
if (window.location.hash === '#readMore') {
window.location.assign('detail#readMore');
}
}
方法二:在原路由地址不变的情况下,利用路由传递参数来实现方法二:在原路由地址不变的情况下,利用路由传递参数来实现
app.component.ts
readMore() {
this.router.navigate(['/detail', { id: 'readMore'}]);
}
detail.component.ts
this.myActivatedRoute.params.subscribe(
(data: any) => {
if (data.id === 'readMore') {
window.location.assign('detail#readMore');
}
}
);
以上这篇Angular 利用路由跳转到指定页面的指定位置方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。
资源评论


weixin_38701156
- 粉丝: 5
- 资源: 957
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


安全验证
文档复制为VIP权益,开通VIP直接复制
