2015-12-30 65 views
0

我遵循nodejs反應範圍滑塊組件說明(https://www.npmjs.com/package/react-rangeslider)。我已經安裝了所有的依賴項,但仍然收到「值未定義」錯誤。我不知道爲什麼會發生。 在這裏,我已經包括了我的代碼,在反應範圍滑塊中投擲「Uncaught ReferenceError:值未定義」

var React = require('react'); 
var Slider = require('react-rangeslider'); 

var Volume = React.createClass({ 
    getInitialState: function(){ 
     return { 
      value: 10, 
     }; 
    }, 
    handleChange: function(value) { 
     this.setState({ 
      value: value, 
     }); 
    }, 
    render: function() { 
     return (
      <Slider value={value} orientation="vertical" onChange={this.handleChange} /> 
     ); 
    } 
}); 

module.exports = Volume; 
+0

KYA @Sathya嚳BHI使用後的價值kar deta hai bina dekhe hi –

+0

對不起@DhavalPatel。我不認識印度教徒。 – Sathya

+0

然後您可以使用https://www.google.co.in/search?q=google+translate&ie=utf-8&oe=utf-8&gws_rd=cr&ei=-8aDVq-9EdGOuASFhoDwCA –

回答

2

變量value這裏沒有定義:

<Slider value={value} orientation="vertical" onChange={this.handleChange} /> 

在你的狀態,而不是

<Slider value={this.state.value} orientation="vertical" onChange={this.handleChange} /> 
+0

謝謝@Pete TNT。 – Sathya

相關問題