使用ionic translate项作为变量

时间:2016-07-19 04:30:32

标签: ionic-framework angular-translate

我是Ionic框架的新手,我想在ng-if条件中使用翻译项作为变量。 {{ "country" | translate }}会向我的页面显示一个值,但我想在以下条件中使用此值。

<div ng-if="country=='my country'"> This is my country </div>

但我不知道如何使用它, 感谢

1 个答案:

答案 0 :(得分:2)

If Statement

中使用离子翻译
<div ng-if="('country'|translate) == 'afghanistan'">
  This is Afghanistan
</div>