Ionic 5 action sheet 文本不接受 transloco

Ionic 5 action sheet text not accept transloco

我在我的 ionic 5 angular 应用程序中使用动作 sheet 和 transloco 翻译插件。

当我在文本上使用 transloco 时,APP 将其视为字符串。

buttons: [{
    text: "{{'channel.edit' | transloco}}",
    icon: 'create-outline',

那么传递翻译文本的正确方法应该是什么?

使用 TranslateService 翻译任何变量 警报标题;

 constructor(translate: TranslateService) {
    translateService.get('channel.edit').subscribe(
      value => {
        this.alertTitle = value;
      }
    )

然后

buttons: [{
    text: this.alertTitle,
    icon: 'create-outline',