angular2 的爬坑之路真的是难啊。。。
1.ng build 打包出的dist 访问index页面空白
报错:
解决方法:使用 ng build --base-href ./
2. ng build 打包出来的dist 访问index页面,assets下面的img显示不出来
解决方法:使用(绝对路径)(assets/img/.png) 代替 (../assets/img/.png)
使用:ng build --prod --no-aot --base-href ./
3. ng build之后刷新页面404问题
在app.module.ts中加入如下代码
import {PathLocationStrategy, LocationStrategy,HashLocationStrategy} from '@angular/common';
@NgModule({
declarations: [AppCmp],
bootstrap: [AppCmp],
imports: [BrowserModule, routes],
providers: [{provide: LocationStrategy, useClass: HashLocationStrategy]
]);