离子3动作表标题翻译

时间:2017-07-12 04:15:43

标签: angular ionic3 ngx-translate

我正在使用我的离子3角应用中的动作表和ngx翻译插件。

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

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

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

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

1 个答案:

答案 0 :(得分:1)

你可以在之前使用翻译:

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