找不到 i18n .json | Angular
Doesn`t find i18n .json | Angular
我在 Angular 应用程序中使用 ngx-translate 进行本地化。在调试模式下一切正常。
在我的 Azure WebAppService 中,我有这个。
本地
我了解到这可以解决问题
export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {
return new TranslateHttpLoader(http, "assets/i18n/", ".json");
}
但没有成功。有什么想法吗?
它发生在我身上一次,我在 web.config.
中缺少 json mimeType
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
...
我在 Angular 应用程序中使用 ngx-translate 进行本地化。在调试模式下一切正常。 在我的 Azure WebAppService 中,我有这个。
本地
我了解到这可以解决问题
export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {
return new TranslateHttpLoader(http, "assets/i18n/", ".json");
}
但没有成功。有什么想法吗?
它发生在我身上一次,我在 web.config.
中缺少 json mimeType<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
...