在 Ionic 中使用 ngx-translate 传递翻译后的值

Pass translated value using ngx-translate in Ionic

我正在尝试找到一种在 Ionic 中使用 ngx-translate 传递翻译值的方法(我想在 ion-card 中进行)。

当然我可以显示这样的值:

<h2> {{ 'DATA' | translate }} </h2>

但是如何将结果作为参数传递?

我试过了:

<ion-card (click)="gotoFunction('DATA' | translate)">
</ion-card>

我通过使用 ngx-translate get() 方法在组件 class 中而不是在模板中进行翻译解决了这个问题。