在Angular 14中,你可以使用路由参数来传递数据和信息。
首先,在定义路由时,需要指定路由路径并指定参数名称。例如:
const routes: Routes = [
{ path: 'product/:id', component: ProductDetailComponent }
];
在这个例子中,路径为/product/:id,其中:id是参数名称。
然后,在组件中,你可以使用ActivatedRoute服务来获取参数的值。例如:
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-product-detail',
templateUrl: './product-detail.component.html',
styleUrls: ['./product-detail.component.css']
})
export class ProductDetailComponent implements OnInit {
productId: string;
constructor(private route: ActivatedRoute) { }
ngOnInit() {
this.route.paramMap.subscribe(params => {
this.productId = params.get('id');
});
}
}
在这个例子中,我们注入了ActivatedRoute服务,然后使用paramMap属性来获取参数的值。使用get()方法来获取具体的参数值,参数名称为:id。
最后,在模板中,你可以使用路由绑定来显示参数的值。例如:
Product ID: {{ productId }}
这就是如何在Angular 14中使用路由参数传递数据和信息的方法。