@Component({
moduleId:__moduleName,
selector:"awesome-component",
templateUrl:"awesome.component.html",
styleUrls:["awesome.component.css"]
})
export class AwesomeComponent {}
我捆綁此使用Systemjs助洗劑和當應用程序被部署在根路徑上例如一切正常行的成分如果應用程序從http://localhost
運行。
當應用在子路徑下運行時,它不起作用,例如, http://localhost/awesome-app
。這產生大量的404,因爲對組件的html和css文件的請求是根據例如http://localhost/awesome-component.html
而不是http://localhost/awesome-app/awesome-component.html
。我已經將基礎href設置爲真棒應用,例如<base href="/awesome-app/">
有什麼辦法可以引導角度發送請求到部署應用程序的子路徑而不是根目錄?