我需要使用綁定將值數組傳遞給組件,例如,如何從組件模板傳遞數組作爲Input()?
@Component({
selector: 'my-component',
template: '<div data="[1, 2, 'test']"></div>
})
export class MyComponent {
@Input() data: any[];
...
}
但是,似乎角將此視爲string
/string[1]
(在實際工程中的數組是一個途徑,我需要傳給這條路到具有[routerLink]
指令的組件)。
我該如何解決這個問題?