我是Angular的新手,目前正在开发我正在处理的下一个问题的第一个Web项目:
我有几个组件,我正在通过NavigationController在它们之间进行路由
this.navigationControl.setRoot(myPage)
这些组件看起来像这样:
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'my-page',
templateUrl: 'myurl.html'
})
但是我得到的不是'myurl.html'
,而是localhost:8000/index.html
我需要做些什么才能使其正常工作?