<ion-item>
<ion-label >{{ 'branch' | translate }}</ion-label>
<ion-select [(ngModel)]="defualtBranch"
okText="{{ 'okText' | translate }}"
cancelText="{{ 'cancelText' | translate }}"
[selectOptions]="{{ 'selectOptionsBranch' | translate }}" >
<ion-option *ngFor="let branch of branchs; let i=index" value="{{branch.BranchCode}}">
{{branch.BranchName}}
</ion-option>
</ion-select>
</ion-item>
如何使用 selectOptions 多语言?
不要在这条线上工作[selectOptions]="{{ 'selectOptionsBranch' | translate }}"