当我试图在基本的 HTML 页面上呈现它时,我试图呈现的链接看起来像这样:
<a [routerLink]="['/leverance/detail', 13]">A new link</a>
尝试在 ag-Grid 上渲染它时,我尝试执行以下操作:
src\app\leverancer\leverancer.component.ts
ngOnInit() {
this.dataGridColumnDefs = [
{
headerName: 'Type',
field: 'leveranceType.name',
width: 150,
cellRenderer: this.customCellRendererFunc
}
];
}
customCellRendererFunc(params): string {
const cellContent `<a [routerLink]="['/leverance/detail', 13]">A new link</a>`;
return cellContent;
}
但我在我的 ag-Grid 中没有看到有效的 routerLink。你能告诉我在我的 ag-Grid 中渲染一个工作的 routerLink 需要做什么吗?