我在ubuntu
上创建了AWS
服务器的实例。除了我不完全理解的两件事之外,一切都很有效。
当你转到my web app时,你必须只在buttons
上操作,例如在菜单中。您无法发出'mypage/items'
之类的请求,因为它会抛出HTTP 404 Error
。但是,如果您转到名为Home
的书签,您应该注意它已添加到url
后缀/items
。但是在我的app.module
中定义了每条路线:
`RouterModule.forRoot([
{ path: 'items', component: ItemListComponent},
{ path: 'guide', component: GuideComponent},
{ path: 'history', component: HistoryComponent},
{ path: 'sign-up', component: SignUpComponent},
{ path: 'login', component: LoginComponent},
{ path: '', component: ItemListComponent}
])`
<ul class="nav navbar-nav">
<li routerLinkActive="active current"><a routerLink="/items">Home</a></li>
<li routerLinkActive="active current"><a routerLink="/guide">Poradnik</a></li>
<li routerLinkActive="active current"><a routerLink="/history">Historia</a></li>
</ul>
您是否可以向我提供一些提示?如何才能使我的table
Home
书签响应?当你切换到移动设备模式时,它就像goot一样。
答案 0 :(得分:0)
您需要向Web服务器提供配置,以将您的所有请求重定向到您的Web应用程序的index.html。请使用以下链接供您参考: https://angular.io/guide/deployment