我在应用程序上使用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/value
在i18n
json
文件中提供呢?还是我在这里遗漏了什么?