Please check this plunk link
I am 404 error, I am unable to find it , please anyone can solve it, and update my plunk
答案 0 :(得分:2)
1)你的base href
路径对于plunker无效
像Plunker这样的实时编码环境设置了应用程序库 动态地址,因此您无法指定固定地址。这就是原因 示例代码替换了写入的脚本 标签即时。
<script>document.write('<base href="' + document.location + '" />');</script>
你应该只需要这个技巧用于实例,而不是生产 代码。
https://angular.io/docs/ts/latest/guide/router.html#!#set-the-lt-base-href-
2)如果您想在DynamicDetail
模板中使用AppComponent
组件,则必须从y BusinessModule
3)您需要在router-outlet
模板
DynamicDetail
<强> Modified plunker 强>