İlk React.js parçamı deniyorum ve erkenden şaşkına döndüm ... Aşağıdaki koda sahibim, bu da içinde bir arama formu oluşturuyor <div id="search"></div>
. Ancak arama kutusuna yazmak hiçbir şey yapmaz.
Muhtemelen sahne ve durumları yukarı ve aşağı geçerken bir şeyler eksik oluyor ve bu yaygın bir sorun gibi görünüyor. Ama şaşkınım - eksik olanı göremiyorum.
var SearchFacet = React.createClass({
handleChange: function() {
this.props.onUserInput(
this.refs.searchStringInput.value
)
},
render: function() {
return (
<div>
Search for:
<input
type="text"
value={this.props.searchString}
ref="searchStringInput"
onchange={this.handleChange} />
</div>
);
}
});
var SearchTool = React.createClass({
render: function() {
return (
<form>
<SearchFacet
searchString={this.props.searchString}
onUserInput={this.props.onUserInput}
/>
<button>Search</button>
</form>
);
}
});
var Searcher = React.createClass({
getInitialState: function() {
return {
searchString: ''
}
},
handleUserInput: function(searchString) {
this.setState({
searchString: searchString
})
},
render: function() {
return (
<div>
<SearchTool
searchString={this.state.searchString}
onUserInput={this.handleUserInput}
/>
</div>
);
}
});
ReactDOM.render(
<Searcher />,
document.getElementById('searcher')
);
(Sonunda başka türlere sahip SearchFacet*
olacağım ama sadece bunu çalıştırmaya çalışıyorum.)
this
kodun hangi noktasında oturum açmak ? Oturum açmaya çalışıyor Searcher.handleUserInput()
veya SearchFacet.handleChange()
hiçbir şey yapmıyor.
this
Metin alanını girerken günlüğe kaydetmeyi deneyin . Artık bileşen othis
olmayabilirSearcher
.