在Angular 9中,要导航到锚点,您可以使用Angular提供的ScrollingModule
。下面是一个示例代码,展示了如何在Angular 9中导航到锚点:
首先,确保您已经在Angular模块中导入了ScrollingModule
:
import { ScrollingModule } from '@angular/cdk/scrolling';
@NgModule({
imports: [
ScrollingModule
// 其他导入...
],
// 其他配置...
})
export class AppModule { }
然后,在您的组件中,您可以使用ViewportScroller
来导航到锚点。在组件的构造函数中注入ViewportScroller
:
import { Component, OnInit } from '@angular/core';
import { ViewportScroller } from '@angular/common';
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponent implements OnInit {
constructor(private viewportScroller: ViewportScroller) { }
ngOnInit(): void {
}
scrollToAnchor(anchor: string): void {
this.viewportScroller.scrollToAnchor(anchor);
}
}
在模板中,您可以使用scrollToAnchor()
方法来导航到锚点。将锚点作为参数传递给该方法:
Go to Section 1
Go to Section 2
当点击链接时,页面将自动滚动到指定的锚点。
希望以上解决方法能够帮助您在Angular 9中实现导航到锚点的功能。
上一篇:Angular 9问题:在IE 11/Edge浏览器中,设置的会话cookie在路由后被删除。
下一篇:Angular 9无法读取属性'pipe'未定义的MatSelect.ngAfterContentInit for Mat Paginator。