有没有人在RC6上使用ng2-bootstrap?
我在app.module中执行此操作(遵循gitHub上的说明):
import {AlertModule} from 'ng2-bootstrap/ng2-bootstrap';
@NgModule({
imports: [BrowserModule, AlertModule],
exports: [],
providers: [],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
我在运行时收到错误:
syntaxError:意外的标记<
答案 0 :(得分:0)
syntaxError: Unexpected token <
表示system.js发出了.js文件的请求并得到了html(404或index.html)作为响应,你需要正确配置system.js 或使用webpack;)
你可以在官方松弛渠道https://www.hamsterpad.com/chat/ng2
中获得更多帮助