有没有人可以告诉我为什么我使用的Angular 2 Final Test Plunk(https://plnkr.co/edit/JY0hcFdaziIsFFJmRaz3?p=preview)无效?
我在控制台上收到此错误:
Refused to display 'https://run.plnkr.co/QdUdeWWKa25MFN9V/' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
https://run.plnkr.co/QdUdeWWKa25MFN9V/ Failed to load resource: the server responded with a status of 522 ()
答案 0 :(得分:1)
几乎没有问题,
1) app.component 应位于 app文件夹中
2) app.module 文件应位于 app文件夹中
3)在 systemjs.config.js 文件中,需要 rxjs library 引用。
4)从导入中移除routing
:[BrowserModule,...]
工作演示:https://plnkr.co/edit/ONGeKcu0sVfQqR7gpHZY?p=preview
'rxjs': 'npm:rxjs',