我们的组建分析图
我们组建需要的是删除,数据流方式如下所示:
为了更方便下一步操作,先写个函数他
然后在Ul组建里面对她进行处理
然后在Zong组建里对数据进行处理,如下所示:
但是悲剧的一幕出现了,删除不准确,估计是传递的数据在哪一步出现了错误,检查了以下,问题出来了,数据在这一步的时候发生了丢失
其实不用那么复杂的,可以更简单的处理好,直接用props给父级即可
效果成功。。。。
完整代码如下所示:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script src="./js/react.js"></script> <script src="./js/react-dom.js"></script> <script src="./js/browser.min.js"></script> </head> <body> <div id="dome"></div> <script type="text/babel"> //搜索区域 var Ck = React.createClass({ //处理搜索事件的函数 handleKey:function(e){ //alert(‘test‘); //判断回车enter键才处理,keyCode13==回车键 if(e.keyCode == 13){ //alert(‘test‘); //如果搜索内容是空的让他不走了 if(!e.target.value) return; //否则添加任务了 var ckcon = { text : e.target.value, isDown: false } //利用属性完成 this.props.addCkcon(ckcon); //清空搜索框的内容 e.target.value = ‘‘; } }, render:function(){ return( <div> <input type="text" placeholder="你要干嘛?" onKeyUp={this.handleKey} /> </div> ); } }); //列表项区域 var Lists = React.createClass({ handleClick:function(){ //alert(‘test‘); this.props.deleteCkcon(this.props.index); }, render:function(){ return( <li> <label> <input type="checkbox" checked={this.props.todo.isDown} /> {this.props.todo.text} </label> <button onClick={this.handleClick}>删除</button> </li> ); } }); //列表框区域 var Ul = React.createClass({ render:function(){ //保存this指针 var _this = this; return( <ul> { this.props.todos.map(function(item,index){ return <Lists todo={item} key={index} index={index} deleteCkcon={_this.props.deleteCkcon} /> }) } </ul> ); } }); //状态组建 var Status = React.createClass({ render:function(){ return( <div> <input type="checkbox" /> 3 已完成 / 3 总数 <button>清除已完成</button> </div> ); } }); //总组建 var Zong = React.createClass({ getInitialState:function(){ return { todos :[ {text:‘6点起床‘,isDown:true}, {text:‘7点出门‘,isDown:true}, {text:‘8点吃早饭‘,isDown:false}, {text:‘9点上班‘,isDown:true}, {text:‘12点下班‘,isDown:false} ], isAllChecked: false } }, addCkcon:function(todo){ //接收到用户的添加的内容然后铺push过去即可 this.state.todos.push(todo); //然后更新state this.setState({ todos : this.state.todos }); }, //处理删除任务 deleteCkcon:function(index){ //用函数splice来删除掉指定的数组元素 this.state.todos.splice(index,1); //删除完成后来更新下页面的内容 this.setState({ todos:this.state.todos }); }, render:function(){ return( <div> <Ck addCkcon={this.addCkcon} /> <Ul todos={this.state.todos} deleteCkcon={this.deleteCkcon} /> <Status /> </div> ); } }); ReactDOM.render( <Zong />, document.getElementById(‘dome‘) ); </script> </body> </html>
时间: 2024-10-05 10:49:37