に存在しません:私は、このエラー得続けるプロパティは、私はこの角度4成分を持つコンポーネント
export class MenuComponent {
constructor(private menuService: MenuService) { }
@Input(nodes):any;
getMenu(path:string): void {
this.menuService.getData(path).subscribe(data => {
// Read the result field from the JSON response.
let newValue = JSON.stringify(data).replace('{"Node":', '[');
newValue = newValue.substring(0,newValue.length - 1);
newValue+="]";
const menu=JSON.parse(newValue);
this.nodes = menu;
});
}
}
:Property 'nodes' does not exist on type 'MenuComponent'
をしてnodes
財産が権利があるので、なぜ私は見当がつかない。
'@Input()nodes:any;'? – jonrsharpe
何が問題なのですか? – eli
あなたの実際のコメントと私のコメントをよく比較してください! – jonrsharpe