如果Angular 7的URL发生了变化,但没有发生其他变化,你可以通过以下方法解决:
在app.module.ts中导入RouterModule和Routes:
import { RouterModule, Routes } from '@angular/router';
定义你的路由配置:
const routes: Routes = [
{ path: 'home', component: HomeComponent },
{ path: 'about', component: AboutComponent },
{ path: 'contact', component: ContactComponent },
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
在app.component.html中使用router-outlet组件来显示路由组件:
在你的模板文件中,使用RouterLink指令来创建链接到不同URL的导航。
例如,在导航栏中创建链接:
在你的组件中,可以使用Router模块的navigate方法来编程导航到不同的URL。
例如,在一个按钮的点击事件中导航到home页面:
import { Router } from '@angular/router';
@Component({
...
})
export class HomeComponent {
constructor(private router: Router) { }
navigateToHome() {
this.router.navigate(['/home']);
}
}
这些方法可以帮助你管理Angular 7应用中URL的变化,并进行导航到不同的页面。