当前,我的.ts文件之一中有此方法:
clearFavourites() {
if (this.language === 'en') {
this.dialogs.confirm('Do you want to clear your favourite apps?', 'Clear Favourites', ['Yes', 'No'])
.then(val => {
console.log('Dialog dismissed' + val);
if (val === 1) {
this.resetFavIcons();
this.storage.remove('FavAppList');
this.storage.set('FavHasChanged', 'yes');
}
})
.catch(e =>
console.log('Error displaying dialog', e)
);
} else if (this.language === 'mt') {
this.dialogs.confirm('Trid tneħħi l-apps tiegħek mill-favoriti?', 'Neħħi minn Favoriti', ['Iva', 'Le'])
.then(val => {
console.log('Dialog dismissed' + val);
if (val === 1) {
this.resetFavIcons();
this.storage.remove('FavAppList');
this.storage.set('FavHasChanged', 'yes');
}
})
.catch(e =>
console.log('Error displaying dialog', e)
);
}
}
}
我已经安装了ngx trasnlate,并且已经在html中使用转换管道。 我想在此方法中使用相同的方法,以删除if和else来检查语言,并且只有类似以下内容:
clearFavourites() {
this.dialogs.confirm('SettingsPage.RemoveFav' | translate, 'SettingsPage.ClearFav' | translate, ['SettingsPage.Yes' | translate, 'SettingsPage.No' | translate])
.then(val => {
console.log('Dialog dismissed' + val);
if (val === 1) {
this.resetFavIcons();
this.storage.remove('FavAppList');
this.storage.set('FavHasChanged', 'yes');
}
})
.catch(e =>
console.log('Error displaying dialog', e)
);
}
}
上述方法对我不起作用,是否还有另一种方法可以像上述方法一样在.ts文件中使用ngx转换管道?
答案 0 :(得分:0)
根据this的答案,您可以像下面这样注入服务:
constructor(private localizationSvc: LocalizationService) {
}
,然后您可以使用getResource
方法在组件中获取资源:
const translatedText = await this.localizationSvc.getResource('SettingsPage.cancelText', 'en');
注意 :此答案基于我上面提到的最后一个答案。因此,请确保从此处复制代码。
答案 1 :(得分:0)
因此,我设法找到了问题的答案。
我将代码更改为:
clearFavourites() {
this.dialogs.confirm(this.translate.instant('SettingsPage.AskFavs'), this.translate.instant('SettingsPage.ClearFavs'), [this.translate.instant('SettingsPage.Yes'), this.translate.instant('SettingsPage.No')])
.then(val => {
console.log('Dialog dismissed' + val);
if (val === 1) {
this.resetFavIcons();
this.storage.remove('FavAppList');
this.storage.set('FavHasChanged', 'yes');
}
})
.catch(e =>
console.log('Error displaying dialog', e)
);
}
}
并设法在ts文件中获得了动态文本翻译。
希望这对其他人也有帮助。