我是Ionic框架的新手,我想在ng-if
条件中使用翻译项作为变量。 {{ "country" | translate }}
会向我的页面显示一个值,但我想在以下条件中使用此值。
<div ng-if="country=='my country'">
This is my country
</div>
但我不知道如何使用它, 感谢
答案 0 :(得分:2)
在 If Statement :
中使用离子翻译<div ng-if="('country'|translate) == 'afghanistan'">
This is Afghanistan
</div>