如何在 Angular 中创建类似于https://jqueryui.com/slider/#range的范围滑块,其中最小值和最大值分别推送到 $gt 和 $lt?
this.form = this.fb.group({
'price': this.fb.group({
'$lt': [null, []],
'$gt': [null, []]
})
})
如何在 Angular 中创建类似于https://jqueryui.com/slider/#range的范围滑块,其中最小值和最大值分别推送到 $gt 和 $lt?
this.form = this.fb.group({
'price': this.fb.group({
'$lt': [null, []],
'$gt': [null, []]
})
})