我正在关注此链接以使用 i18n 在 Angular 中实现本地化。
当我导航到“url/en”或“url/fr”时,它不是指向相应的目录文件夹,而是尝试搜索路由并给出以下错误消息。
core.js:15723 ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'fr'
我使用 VS2019 创建了这个 Angular 7 项目。对于后端,我使用的是 asp.net core 2.2 web api。
运行以下命令会在本地显示具有正确翻译的页面。
ng服务--configuration=fr
我在 app.modules.ts 中以这种方式配置了路由
RouterModule.forRoot([ { path:'', component:HomeComponent, canActivate:[AuthGuard] },
我以这种方式修改了 .csproj 文件。
<Target Name="PublishRunWebpack" AfterTargets="ComputeFilesToPublish">
<!-- As part of publishing, ensure the JS resources are freshly built in production mode -->
<Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
<Exec WorkingDirectory="$(SpaRoot)" Command="npm run build-locale" />
<Exec WorkingDirectory="$(SpaRoot)" Command="npm run build-locale:ssr" Condition=" '$(BuildServerSideRenderer)' == 'true' " />