ts文件中下拉菜单的翻译

时间:2019-08-02 18:06:49

标签: angular

我已经通过在html页面中使用ngif来翻译下拉列表,但是我想通过在ts文件中编写代码来进行翻译

这是我在html页面及其翻译中所做的,但是希望通过在组件文件中编写代码来进行翻译

{{'abc。'+节点?。名称|翻译}}               {{node?.Name}}

<span *ngIf="node.SpaceType !== 'building' && node.SpaceType !== 'portfolio' && node.SpaceType !== 'meter' && node.SpaceType !== 'facility' && node.SpaceType !== 'floor' && node.SpaceType !== 'points'  else test">{{'abc.'+ node?.Name|translate}}</span> 
              <ng-template #test>{{node?.Name}}</ng-template>

我通过这样做得到了正确的结果,但对看起来像斑驳的工作不满意

0 个答案:

没有答案