在兄弟路线之间切换时缺少路线数据

时间:2017-06-23 12:48:30

标签: javascript angular angular-routing

我有一个组件树,如果简化,它看起来像这样:

                           parent
                           /    \    
                       childA   childB
                                   \
                                 childBC

childA我想转到childBC,我这样做:

// from childA: this.router.navigate(['childB', 'childBC', someVeryImportantData], { relativeTo: this.route.parent });

childBC我这样做:

this.route.data.subscribe(data => {......});

当我这样做时,我收到以下错误: enter image description here

但是:ChildBchildBC都没有实例化,因此错误发生在所有这些之前。

有人可以告诉我这里发生了什么吗?

0 个答案:

没有答案