【发布时间】:2017-04-21 03:35:12
【问题描述】:
我收到以下错误,但无法确定它发生的原因
warning.js:36 警告:搜索框正在将文本类型的受控输入更改为不受控制。输入元素不应从受控切换到不受控(反之亦然)。在组件的生命周期内决定使用受控或不受控的输入元素
我有以下文件:
- Searchbox.js
import React, { Component } from 'react';
class Searchbox extends Component {
// render method
render() {
const { value, onChange, onSubmit, children } = this.props
console.log(value)
console.log(onChange)
console.log(onSubmit)
console.log(children)
return (
<section className="search-section">
<form onSubmit={onSubmit}>
<input
type="text"
className="search-box"
value={value}
onChange={onChange}
/>
<button type="submit">{children}</button>
</form>
</section>
)
}
}
export default Searchbox
还有 App.js 文件
import React, { Component } from 'react';
import Searchbox from './components/Searchbox'
//import logo from './logo.svg';
import './App.css';
const DEFAULT_TERM = 'High Fidelity'
class App extends Component {
// Constructor
constructor(props) {
super(props)
this.state = {
movie: null,
searchTerm: DEFAULT_TERM
}
this.onSearchSubmit = this.onSearchSubmit.bind(this)
this.onSearchChange = this.onSearchChange.bind(this)
}
// onSearchSubmit method
onSearchSubmit(e) {
e.preventDefault()
console.log("Searching movie with name" + this.status.searchTerm)
}
onSearchChange(e){
console.log(event.target.value)
this.setState({ searchTerm: event.target.value })
}
// render method
render() {
const { movie, searchTerm } = this.state
return (
<div className="App">
<Searchbox
value={searchTerm}
onChange={this.onSearchChange}
onSubmit={this.onSearchSubmit}
>Search
</Searchbox>
</div>
);
}
}
export default App;
加载时一切正常,但是当我在文本字段中输入内容时,就会触发错误。
有什么建议吗?
【问题讨论】:
-
它对我来说工作正常。
-
刚刚将您的代码粘贴到 codepen 中,没有任何警告或错误
标签: javascript reactjs event-handling react-dom