0

我在我的 ionic 3 angular 应用程序中使用操作表和 ngx translate 插件。

就像我的应用程序中的其他任何地方一样,如果我在下面指定,则操作表的翻译不起作用,那么整个操作表都被视为字符串。

this.actionSheet = this.actionSheetCtrl.create({
          title: "{{'SEND' | translate }}",
          buttons: [

如果我指定没有双引号,那么它不被接受。

那么将翻译的标题传递给这个的正确方法应该是什么?

4

1 回答 1

0

您可以在之前使用翻译:

var titletext = this.translate.instant('SEND'); this.actionSheet = this.actionSheetCtrl.create({ title: titletext,

于 2017-08-10T01:40:59.980 回答