在方括号/ Sencha-touch中提取数字

时间:2013-08-28 15:34:05

标签: sencha-touch

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

我的Container看起来如下:

   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.问题是数字被方括号包围,我只能在这些括号中使用它。

任何人都可以告诉我如何解决这个问题?谢谢。

1 个答案:

答案 0 :(得分:0)

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

  • <your component>.getValue()[0]
  • parseFloat(<your component>.getValue())
  • <your component>.getValue().toString()