本文介绍了angular 2 nouislider:如何重新创建滑块?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要更改滑块上的手柄数量.谷歌搜索时说我需要销毁并重新创建滑块.
I need to change the number of handles on a slider. When googling it says I need to destroy and create the slider again.
现在它在此处显示:更新和阅读滑块选项:
我能够销毁滑块:
@ViewChild('slider') slider;
destroySlider() {
this.slider.slider.destroy();
}
但是我似乎找不到如何创建有角度的滑块.
but I can't seem to find how to create the slider in angular.
感谢您的帮助.
推荐答案
您可以通过*ngIf
component.html
<button (click)="reCreate()">Recreate slider</button>
<nouislider *ngIf="flag" #slider [config]="someKeyboardConfig"></nouislider>
然后重新创建函数可能类似于:
and then reCreate function could look like:
component.ts
flag = true;
reCreate() {
this.slider.slider.destroy();
this.flag = false;
this.cdRef.detectChanges();
this.flag = true;
}
Plunker Example
这篇关于angular 2 nouislider:如何重新创建滑块?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!