Angular8 i18n(用于占位符)标签文本 [英] Angular8 i18n for placeholderLabel text

查看:91
本文介绍了Angular8 i18n(用于占位符)标签文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在ngx-mat-select-search palceholderLabel中添加i18n

How to add i18n in ngx-mat-select-search palceholderLabel

       <div class="form-group col-md-6 mb-lg-5 mb-4">
              <mat-form-field class="example-full-width w-100">
                <mat-select (selectionChange)='vehicle_maker_updated($event)' formControlName="vehicleMakerValue" placeholder="Motor Make" i18n-placeholder>
                  <mat-option>
                    <ngx-mat-select-search formControlName="vehicleMakerFilterInputValue" placeholder="Select Motor Maker" [noEntriesFoundLabel]="'No matching vehicle makers found'" (ngModelChange)='filter_vehicle_makers($event)' i18n-placeholder></ngx-mat-select-search>
                  </mat-option>
                  <mat-option *ngFor="let vehicle_maker_option of filtered_vehicle_maker_options" [value]="vehicle_maker_option.id">
                    {{vehicle_maker_option.name}}
                  </mat-option>
                </mat-select>
                <mat-error *ngIf="vehicleMakerValue.hasError('required')" i18n>
                  Select motor make
                </mat-error>
              </mat-form-field>                 
          </div>  

我已经添加了i18n占位符,但无法正常工作

i have already added the i18n-placeholder but its not working

推荐答案

,您需要使用placeholderLabel属性(请参见

you need to use the placeholderLabel attribute (see https://github.com/bithost-gmbh/ngx-mat-select-search#inputs)

<ngx-mat-select-search 
formControlName="vehicleMakerFilterInputValue" 
placeholderLabel="Select Motor Maker" 
[noEntriesFoundLabel]="'No matching vehicle makers found'" 
(ngModelChange)='filter_vehicle_makers($event)' 
i18n-placeholderLabel>
</ngx-mat-select-search>

placeholderLabeli18n-placeholderLabel属性相关的位置

这篇关于Angular8 i18n(用于占位符)标签文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆