在Angular中,可以通过使用路由来将参数传递给组件的templateUrl。具体步骤如下:
const routes: Routes = [
{ path: 'product/:id', component: ProductComponent }
];
import { ActivatedRoute } from '@angular/router';
export class ProductComponent {
productId: string;
constructor(private route: ActivatedRoute) {
this.productId = this.route.snapshot.params['id'];
}
}
<h1>Product Details</h1>
<p>Product ID: {{ productId }}</p>
通过以上步骤,就可以在Angular中将参数传递给组件的templateUrl了。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)、腾讯云云数据库MySQL版(CDB)、腾讯云对象存储(COS)。
腾讯云产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云