我在angular 4应用程序中使用bootstrap selectpicker,我必须从我的类型脚本代码中默认值。 这些是本文档https://silviomoreto.github.io/bootstrap-select/methods/
中给出的jquery方法我想仅使用angular调用方法。 我尝试过使用ElementRef, 这是我的代码,
this.elementref.nativeElement.selectpicker('val',[defaultvalues])
它给出了错误“selectpicker不是函数”。 但是记录this.elementref.nativeElement会打印“select”元素,如下所示。
<select _ngcontent-c4="" appselectpicker="" class="selectpicker ng-untouched
ng-pristine ng-valid" data-live-search="true" formcontrolname="category"
multiple="" title="Any" tabindex="-98" ng-reflect-name="category">
<option _ngcontent-c4="" data-tokens="Food">Food </option>
<option _ngcontent-c4="" data-tokens="Coffee">Coffee</option>
<option _ngcontent-c4="" data-tokens="Night Life">Night
Life</option>
<option _ngcontent-c4="" data-tokens="Breakfast">Breakfast</option>
</select>