Plunker for Angular2代码有404错误?

时间:2017-01-20 06:32:08

标签: angularjs angular typescript systemjs plunker

    Please check this plunk link

   I am 404 error, I am unable to find it , please anyone can solve it, and update my plunk

此处链接https://plnkr.co/edit/rKxWDg?p=preview

1 个答案:

答案 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