为什么console没有提示信息??
var MyTitle = React.createClass({
propTypes:{
title:React.PropTypes.isRequired,
},
render:function(){
return {this.props.title}
;
}
});
var data = 10;
ReactDOM.render( ,document.body);
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
因为校验只在
development mode中生效:看文档:Prop Validation
至于如何开启/禁用
development mode,看这里:How to turn on/off ReactJS 'development mode'?