create-react-app
发布时间:2020-12-15 06:57:10 所属栏目:百科 来源:网络整理
导读:作任何东西之前需要搭建环境 首先:安装create-react-app npm install -g create-react-app 使用命令创建myapp目录 create-react-app myapp 下一步:进入目录命令 cd myapp 运行 npm start 它会自动跳转到浏览器 跳转后再安装命令 npm install sass-loader no
作任何东西之前需要搭建环境 首先:安装create-react-app npm install -g create-react-app使用命令创建myapp目录 create-react-app myapp下一步:进入目录命令 cd myapp运行 npm start它会自动跳转到浏览器 npm install sass-loader node-sass --save-dev上面就是环境搭建 可以进去官网直接去下载bootstarp 也可以参考博客参考博客 index.jsimport React from 'react'; import ReactDOM from 'react-dom'; import LiuYanapp from './LiuYanapp'; import './bootstrap/css/bootstrap.min.css'; ReactDOM.render(<LiuYanapp/>,document.getElementById("app")); LiuYanapp.jsimport React from 'react'; import LiuYanList from './LiuYanList'; import LiuYanForm from './LiuYanForm'; class LiuYanapp extends React.Component{ constructor(props){ super(props); this.ids=1; this.state={ todos:[] }; this.addItem=this.addItem.bind(this); this.deleteItem=this.deleteItem.bind(this); } deleteItem(id){ let newtodos=this.state.todos.filter((item)=>{ return !(item.id==id) }); this.setState({ todos:newtodos }); } addItem(value){ this.state.todos.unshift( { id:this.ids++,text:value,time:(new Date()).toLocaleString(),done:0 } ) this.setState({ todos:this.state.todos }); } render(){ return ( <div className="container"> <br/> <br/> <br/> <br/> <div className="panel panel-default"> <div className="panel-headingbg-danger"> <hr/> </div> <div className="panel-body"> <h1 className="text-center ">都来留言啊!!!</h1> <LiuYanList deleteItem={this.deleteItem} data={this.state.todos}/> <LiuYanForm addItem={this.addItem}/> </div> </div> </div> ); } } export default LiuYanapp; LiuYanForm.jsimport React from 'react'; class LiuYanForm extends React.Component{ tijiao(event){ event.preventDefault(); } add(event){ if(event.type=="keyup"&&event.keyCode!=13){ return false; } let txt=this.refs.txt.value; if(txt=="") return false; this.props.addItem(txt); this.refs.txt.value=""; } render(){ return( <form className="form-horizontal" onSubmit={this.tijiao.bind(this)}> <div className="form-group"> <div className="col-sm-10"> <input ref="txt" type="text" className="form-control" onKeyUp={this.add.bind(this)} id="exampleInputName2" placeholder="请输入留言内容"/> </div> <div className="col-sm-2"> <button type="button" className="btn btn-primary" onClick={this.add.bind(this)}>留言</button> </div> </div> </form> ); } } export default LiuYanForm; LiuYanItem.jsimport React from 'react'; class LiuYanItem extends React.Component{ delete(){ this.props.deleteItem(this.props.data.id); } render(){ let {text,time,done,id}=this.props.data; return ( <tr> <td>{text} <br/> <br/> {time} </td> <td> <a className="btn glyphicon glyphicon-remove btn-danger" onClick={this.delete.bind(this)}>删除留言</a> </td> </tr> ); } } export default LiuYanItem; LiuYanList.jsimport React from 'react'; import LiuYanItem from './LiuYanItem'; class LiuYanList extends React.Component{ render(){ let todos=this.props.data; let todoItems=todos.map(item=>{ return <LiuYanItem deleteItem={this.props.deleteItem} key={item.id} data={item}/> }); return ( <table className="table table-striped"> <thead> <tr> <th>评论评论</th> </tr> </thead> <tbody> {todoItems} </tbody> </table> ); } } export default LiuYanList; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |