我具有以下组件(radioOther.jsx
):
'use strict';
//module.exports = <-- omitted in update
class RadioOther extends React.Component {
// omitted in update
// getInitialState() {
// propTypes: {
// name: React.PropTypes.string.isRequired
// }
// return {
// otherChecked: false
// }
// }
componentDidUpdate(prevProps, prevState) {
var otherRadBtn = this.refs.otherRadBtn.getDOMNode();
if (prevState.otherChecked !== otherRadBtn.checked) {
console.log('Other radio btn clicked.')
this.setState({
otherChecked: otherRadBtn.checked,
});
}
}
onRadChange(e) {
var input = e.target;
this.setState({
otherChecked: input.checked
});
}
render() {
return (
<div>
<p className="form-group radio">
<label>
<input type="radio"
ref="otherRadBtn"
onChange={this.onRadChange}
name={this.props.name}
value="other"/>
Other
</label>
{this.state.otherChecked ?
(<label className="form-inline">
Please Specify:
<input
placeholder="Please Specify"
type="text"
name="referrer_other"
/>
</label>)
:
('')
}
</p>
</div>
)
}
};
在使用ECMAScript6之前,一切都很好,现在出现1个错误,1个警告,并且我有一个后续问题:
错误: 未被捕获的TypeError:无法读取null的属性“ otherChecked”
警告:
getInitialState是在RadioOther(一个普通的JavaScript类)上定义的。仅使用React.createClass创建的类支持此功能。您是要定义状态属性吗?
谁能看到错误在哪里,我知道这是由于DOM中的条件语句引起的,但显然我没有正确声明其初始值?
我应该让 getInitialState 静态
如果getInitialState不正确,在什么地方声明我的原型?
更新:
RadioOther.propTypes = {
name: React.PropTypes.string,
other: React.PropTypes.bool,
options: React.PropTypes.array }
module.exports = RadioOther;
@ssorallen,此代码:
constructor(props) {
this.state = {
otherChecked: false,
};
}
产生"Uncaught ReferenceError: this is not defined"
,而下面纠正了
constructor(props) {
super(props);
this.state = {
otherChecked: false,
};
}
但是现在,单击另一个按钮现在会产生错误:
Uncaught TypeError: Cannot read property 'props' of undefined
getInitialState
在ES6类中不使用。而是this.state
在构造函数中分配。propTypes
应该是静态类变量或分配给该类,而不应该分配给组件实例。 export default class RadioOther extends React.Component {
static propTypes = {
name: React.PropTypes.string.isRequired,
};
constructor(props) {
super(props);
this.state = {
otherChecked: false,
};
}
// Class property initializer. `this` will be the instance when
// the function is called.
onRadChange = () => {
...
};
...
}
在React的文档中了解有关ES6类的更多信息:将函数转换为类
我有以下组件(): > 有人能看到错误在哪里吗?我知道这是由于DOM中的条件语句,但显然我没有正确声明它的初始值? 我应该将getInitialState设置为静态吗 如果getInitialState不正确,声明我的proptypes的合适位置在哪里?
如何用普通JavaScript编写?
我在React中测试ES6语法,并编写如下组件:
问题内容: 我正在React中调试ES6语法,并编写如下组件: 但是浏览器使我警惕: 警告:getInitialState是在Loginform(普通的JavaScript类)上定义的。仅使用React.createClass创建的类支持此功能。您是要定义状态属性吗? 我可以使用传统语法来处理它,但是正确的ES6语法是什么? 另一件事,我认为传统语法是一个对象,因此其中的功能由逗号分隔,但是对于需
第二行提示 应该怎么写呢?
> 在ES6中直接初始化类上的属性是不可能的,目前只能用这种方式声明方法。同样的规则也存在于ES7中。 https://stackoverflow.com/a/38269333/4942980 render方法中的一个函数将在每个呈现中创建,这对性能有一点影响。如果你把它们放在渲染图中也很乱 ...更喜欢只将专门处理呈现组件和/或JSX的函数放在render中(即,在prop上进行映射,根据pro