13

我在应用程序上使用ngx-translate进行国际化Ionic 3。我pipe很好地使用了HTML代码。但是现在我的ts文件如下所示。你能告诉我如何处理这种动态用例ngx吗?

 updateApi(topic) {
     this.showToast(`Topic ${topic.name} subscribed!`);//this is the dynamic text
  }

 showToast(message) {
        let toast = this.toastCtrl.create({
            message: message,
            duration: 3000
        });
        toast.present();
    }

这里的问题是我不知道预先的价值${topic.name}。那么我怎样才能key/valuei18n json文件中提供呢?还是我在这里遗漏了什么?

4

2 回答 2

21

您必须在组件中注入翻译服务:

constructor(private translate: TranslateService) {}

并在您的翻译文件中声明如下:

{
  "TOPIC": "Topic {{value}} subscribed!"
}

然后您可以选择以下方式之一:

立即翻译:

showToast(this.translate.instant('TOPIC', {value: topic.name}));

用 observable 翻译

this.translate.get('TOPIC', {value: topic.name}).subscribe(res => {
      showToast(res);
});

直接在模板中翻译

{{ 'TOPIC' | translate: {value: topic.name} }}
于 2017-09-11T12:42:25.840 回答
5

你也可以这样做:

this.showToast(this.translate.instant('TOPIC', {value: ${topic.name}}));
于 2018-01-15T09:57:04.877 回答