我有点不好意思承认我花了更多的时间来解决这个可怕的问题:
<script src="node_modules/angular2/bundles/router.dev.js"></script>
我的错误是我忘记将以下内容添加到我的index.html:
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
但我包括:
main( )
{
message( ) ;
printf ( "\nCry, and you stop the monotony!" ) ;
}
message( )
{
printf ( "\nSmile, and the world smiles with you..." ) ;
}
有没有办法配置angular2 dev版本以发出更多有用的信息,这意味着我会在dev中得到更多有关此类问题的有用信息?
答案 0 :(得分:1)
**Syntax Error: Unexpected token <**
来自SystemJS
尝试导入ROUTER_PROVIDERS
或任何与路由器相关的内容。由于您未添加router.dev.js
,因此无法将其导入,并且网络服务器请求将返回404
。您将能够在网络控制台中看到此错误。意外令牌<
实际上是<!DOCTYPE html>
页面中404
的开始标记