0

我在 Sencha Touch 2 中使用滑块功能

我的容器如下所示:

   xtype: 'container',
   height: 149,
   minHeight: 480, 
   ui: 'dark', width: 283, 
   items: [ { 
       xtype: 'sliderfield',
       border: 4,
       docked: 'top',
       height: 42,
       itemId: 'alphaSliderField', 
       width: 280,
       label: 'Profilgewichtung', 
       labelWidth: '44%', 
       value: [ 0 ],
       increment: 0.5,
       maxValue: 1 
    },

现在我想使用它的值,它可以是 0 、 0.5 和 1。问题是这个数字被方括号括起来,我只能在没有这些括号的情况下使用它。

谁能告诉我我该如何解决这个问题?谢谢你。

4

1 回答 1

0

您可以通过三种方式提取价值:

  • <your component>.getValue()[0]
  • parseFloat(<your component>.getValue())
  • <your component>.getValue().toString()
于 2013-08-28T16:04:23.397 回答