晚上好,
我想知道使用 [routerLink] 指令传递复杂对象的最佳方法,以及如何阅读它。
IE:
complexObject = {
x : 'ok',
y: {
a: 2,
b: 'test'
},
}
<a [routerLink]="['/example/example-test', complexObject ]">
this.activatedRoute.paramMap.subscribe(complexObject => {
complexObject.get('x') // ok
complexObject.get('y') // The nested object 'y' is a string like [object object]
}
提前致谢