gpt4 book ai didi

html - Angular 中的字符串资源

转载 作者:太空狗 更新时间:2023-10-29 13:40:46 25 4
gpt4 key购买 nike

我正在开发一个 Angular 应用程序,我正在寻找类似于 Android 开发中可用的 Android 资源的东西。

Android中获取字符串的方法如下:

String mystring = getResources().getString(R.string.mystring);

我想在 Angular 中也有同样的东西。

例如,如果我有几个 HTML 模板,其中有关于提供的错误电子邮件的相同消息...

<div class="alert alert-danger">
<strong>Error!</strong>Invalid e-mail
</div>

我想要以下内容:

<div class="alert alert-danger">
<strong>Error!</strong>{{myStrings.INVALID_EMAIL}}
</div>

...或者类似这样的...

<div class="alert alert-danger">
<strong>Error!</strong>{{'INVALID_EMAIL' | stringGenerator}}
</div>

你知道我可以安装什么方法或插件来达到那个目的吗?

最佳答案

将配置、翻译和资源与应用程序的逻辑分开是非常有用的。配置在其他上下文中也非常有帮助,例如,让 api_url 对任何 rest 调用都有用。

您可以使用 @angular/cli 设置此类内容.具有以下应用程序结构:

|- app
|- assets
|- i18n
- en.json
- it.json
|- json-config
- development.json
- env.json
- production.json
|- resources
- en.json
- it.json
|- environment
- environment.prod.ts
- environment.ts

|- config
- app.config.ts

地点:

  • app:包含所有应用逻辑
  • assets/i18n/*.json:包含可在您的任何组件中使用的文本资源。我们想要涵盖的每种语言都有一个。

例如en.json:

{
"TEST": {
"WELCOME" : "Welcome"
}

E.G it.json:

{
"TEST": {
"WELCOME" : "Benvenuto"
}
  • assets/json-config:包含用于开发模式和生产模式的配置文件。还包含 env.json,这是一个 json,表示当前的开发模式:

例如env.json:

{
"env" : "development"
}

例如development.json:

{
"API_URL" : "someurl",
"MYTOKEN" : "sometoken",
"DEBUGGING" : true
}
  • assets/resources:包含我们想要涵盖的每种语言的 jsons 资源文件。例如,它可能包含应用程序模型的 jsons 初始化。例如,如果您想要填充要传递给基于环境和/或语言的个性化 *ngFor 的模型数组,这将很有用。这种初始化应该在每个组件内部完成,这些组件希望通过 AppConfig.getResourceByKey 访问精确的资源,稍后将显示。

  • app.config.ts:配置服务,根据开发模式加载资源。我将在下面展示一个片段。

基本配置:

为了在应用程序启动时加载基本配置文件,我们需要做一些事情。

app.module.ts:

import { NgModule, APP_INITIALIZER } from '@angular/core';
/** App Services **/
import { AppConfig } from '../config/app.config';
import { TranslationConfigModule } from './shared/modules/translation.config.module';

// Calling load to get configuration + translation
export function initResources(config: AppConfig, translate: TranslationConfigModule) {
return () => config.load(translate);
}

// Initializing Resources and Translation as soon as possible
@NgModule({
. . .
imports: [
. . .
TranslationConfigModule
],
providers: [
AppConfig, {
provide: APP_INITIALIZER,
useFactory: initResources,
deps: [AppConfig, TranslationConfigModule],
multi: true
}
],
bootstrap: [AppComponent]
})
export class AppModule { }

app.config.ts:

如上所述,此服务根据开发模式加载配置文件,在本例中为浏览器语言。如果您想自定义您的应用程序,基于语言加载资源会非常有用。例如,您的意大利发行版会有不同的路线、不同的行为或简单的不同文本。

每个资源、配置和环境条目都可以通过 AppConfig 服务的方法获得,例如 getEnvByKeygetEntryByKeygetResourceByKey.

import { Inject, Injectable } from '@angular/core';
import { Http } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import { get } from 'lodash';
import 'rxjs/add/operator/catch';

import { TranslationConfigModule } from '../app/shared/modules/translation.config.module';

@Injectable()
export class AppConfig {

private _configurations: any = new Object();
private _config_path = './assets/json-config/';
private _resources_path = './assets/resources/';

constructor( private http: Http) { }

// Get an Environment Entry by Key
public getEnvByKey(key: any): any {
return this._configurations.env[key];
}

// Get a Configuration Entryby Key
public getEntryByKey(key: any): any {
return this._configurations.config[key];
}

// Get a Resource Entry by Key
public getResourceByKey(key: any): any {
return get(this._configurations.resource, key);
}

// Should be self-explanatory
public load(translate: TranslationConfigModule){
return new Promise((resolve, reject) => {
// Given env.json
this.loadFile(this._config_path + 'env.json').then((envData: any) => {
this._configurations.env = envData;
// Load production or development configuration file based on before
this.loadFile(this._config_path + envData.env + '.json').then((conf: any) => {
this._configurations.config = conf;
// Load resources files based on browser language
this.loadFile(this._resources_path + translate.getBrowserLang() +'.json').then((resource: any) => {
this._configurations.resource = resource;
return resolve(true);
});
});
});
});
}

private loadFile(path: string){
return new Promise((resolve, reject) => {
this.http.get(path)
.map(res => res.json())
.catch((error: any) => {
console.error(error);
return Observable.throw(error.json().error || 'Server error');
})
.subscribe((res_data) => {
return resolve(res_data);
})
});
}

}

translation.config.module.ts

此模块设置使用 ngx-translate 构建的翻译.根据浏览器语言设置翻译。

import { HttpModule, Http } from '@angular/http';
import { NgModule, ModuleWithProviders } from '@angular/core';
import { TranslateModule, TranslateLoader, TranslateService } from '@ngx-translate/core';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
import { isNull, isUndefined } from 'lodash';


export function HttpLoaderFactory(http: Http) {
return new TranslateHttpLoader(http, '../../../assets/i18n/', '.json');
}

const translationOptions = {
loader: {
provide: TranslateLoader,
useFactory: HttpLoaderFactory,
deps: [Http]
}
};

@NgModule({
imports: [TranslateModule.forRoot(translationOptions)],
exports: [TranslateModule],
providers: [TranslateService]
})
export class TranslationConfigModule {

private browserLang;

/**
* @param translate {TranslateService}
*/
constructor(private translate: TranslateService) {
// Setting up Translations
translate.addLangs(['en', 'it']);
translate.setDefaultLang('en');
this.browserLang = translate.getBrowserLang();
translate.use(this.browserLang.match(/en|it/) ? this.browserLang : 'en');
}

public getBrowserLang(){
if(isUndefined(this.browserLang) || isNull(this.browserLang)){
this.browserLang = 'en';
}
return this.browserLang;
}
}

好的,现在呢?我该如何使用这样的配置?

导入到 app.module.ts 中的任何模块/组件或导入到另一个正在导入 translation.config.module 的自定义模块中的任何模块/组件现在可以自动根据浏览器语言翻译任何内插条目。例如,使用以下片段将根据解释的行为生成WelcomeBenvenuto:

{{ 'TEST.WELCOME' | translate }}

如果我想获取一个资源来初始化某个将传递给 *ngFor 的数组怎么办?

在任何组件中,只需在构造函数中执行:

. . .

// Just some model
public navigationLinks: NavigationLinkModel[];

constructor(private _config: AppConfig) {
// PAGES.HOMEPAGE.SIDENAV.NAVIGATION contains such model data
this.navigationLinks =
this._config.getResourceByKey('PAGES.HOMEPAGE.SIDENAV.NAVIGATION');
}

当然你也可以将资源和配置结合起来。

关于html - Angular 中的字符串资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46242346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com