我在我的 ionic 3 angular 应用程序中使用操作表和 ngx translate 插件。
就像我的应用程序中的其他任何地方一样,如果我在下面指定,则操作表的翻译不起作用,那么整个操作表都被视为字符串。
this.actionSheet = this.actionSheetCtrl.create({
title: "{{'SEND' | translate }}",
buttons: [
如果我指定没有双引号,那么它不被接受。
那么将翻译的标题传递给这个的正确方法应该是什么?