从零开始 React Native (4) React入门_状态属性_生命周期

前端之家收集整理的这篇文章主要介绍了从零开始 React Native (4) React入门_状态属性_生命周期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

React入门状态属性生命周期

html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <Meta charset="UTF-8">
  5. <script src="react.js"></script>
  6. <script src="react-dom.js"></script>
  7. <script src="browser.min.js"></script>
  8. <script type="text/babel" src="04.js"></script>
  9. <title>Title</title>
  10. <div id="myDiv"></div>
  11. </head>
  12. <body>
  13.  
  14. </body>
  15. </html>
  1. //注意 这里的这三个文件去这里下载
  2. //前两个
  3. [下载地址 ](http://reactjs.cn/react/docs/getting-started-zh-CN.html)
  4. //第三个babel的文件 直接保存文件就行
  5. //https://npmcdn.com/babel-core@5.8.38/browser.min.js
  6. //把这个js保存一下
  7. //三个文件就齐了
  8.  
  9. <script src="react.js"></script>
  10. <script src="react-dom.js"></script>
  11. <script src="browser.min.js"></script>

第一个js

  1. /** * Created by liuml on 2017/4/25. */
  2.  
  3.  
  4. //React.js
  5. //React 组件化(组件的重用) 自定义一个组件
  6. //自定义组件
  7. class HelloReact extends React.Component {
  8. //组件的内容
  9. render() {
  10. return <div>
  11. Hello React!
  12. </div>;
  13. }
  14. }
  15. //自定义组件
  16. class HelloReact extends React.Component {
  17. //组件的内容
  18. render() {
  19. return <div>
  20. Hello<i> React!</i>
  21. </div>;
  22. }
  23. }
  24.  
  25. //使用自定义的组件
  26. //绘制到页面
  27. ReactDOM.render(<HelloReact></HelloReact>,document.body);
  28.  
  29.  
  30. //下一个例子 包含 组件的重用
  31. class ChildText extends React.Component {
  32. //组件的内容
  33. render() {
  34. return <div>
  35. Hello<b> React!</b>
  36. </div>;
  37. }
  38. }
  39.  
  40. class WrapperText extends React.Component {
  41. //组件的内容 虚拟dom(document object model)
  42. //React自定义组件大写开头 html 标签小写开头
  43. render() {
  44. return <p>
  45. <ChildText></ChildText>
  46. <span>wrapperText</span>
  47. </p>;
  48. }
  49. }
  50.  
  51. // 虚拟dom 跨平台
  52.  
  53.  
  54. ReactDOM.render(<WrapperText></WrapperText>,document.body);

第二个js 案例

  1. /** * Created by liuml on 2017/4/25. */
  2.  
  3.  
  4. //案例: 点击切换 喜欢不喜欢
  5. //标签属性命名,小驼峰命名规则
  6. /*class Text extends React.Component { handlerClick() { alert("ok"); } render() { var like = "喜欢"; //通过状态改变text onclick 小驼峰命名 return <p onClick={this.handlerClick}>你{like}吗?</p> } } ReactDOM.render(<Text/>,document.getElementById("myDiv"));*/
  7.  
  8.  
  9. var Text = React.createClass({
  10. //设置状态的初始值
  11. getInitialState: function @H_502_277@() {
  12. return {isLike: false};
  13. },//逗号
  14.  
  15. //点击事件回调
  16. handlerClick: function @H_502_277@() {
  17. //改变状态
  18. this.setState({isLike: !this.state.isLike});
  19.  
  20. },render: function @H_502_277@() {
  21. //获取状态
  22. /* var like ="喜欢"; if(this.isLike){ like ="不喜欢"; }else{ like ="喜欢"; }*/
  23. var text = this.state.isLike ? "喜欢" : "不喜欢";
  24.  
  25. //通过状态改变text onclick 小驼峰命名
  26. return <p onClick={this.handlerClick}>你{text}吗?</p>
  27. }
  28. });
  29.  
  30. ReactDOM.render(<Text/>,document.getElementById("myDiv"));
  31.  
  32.  
  33. //加载流程:
  34. //1.getInitialState(初始化,设置组件的state的值,给了一个对象)
  35. //2.render(不喜欢)
  36.  
  37. //点击之后的流程
  38. //1.handleClick(点击回调)
  39. //2.setState(改变状态)
  40. //3.render(喜欢)

第三个js

  1. //props 例子 通过属性传参
  2. var Text = React.createClass({
  3.  
  4. render: function @H_502_277@() {
  5. return <p> I love {this.props.name}</p>
  6. }
  7. });
  8.  
  9.  
  10. ReactDOM.render(<Text name="test"/>,document.getElementById("myDiv"));
  11.  
  12.  
  13. //props 更新子组件 而子组件只能通过 props 来传递数据。 案例 01 联动
  14. //子组件
  15. class TextComponent extends React.Component {
  16.  
  17. render() {
  18. return <div>hello{this.props.text}!</div>
  19. }
  20. }
  21.  
  22.  
  23. //父组件
  24. var WrapperCompoent = React.createClass({
  25. getInitialState: function @H_502_277@() {
  26. return {};
  27. },//内容改变后回调
  28. handlerChange: function @H_502_277@() {
  29.  
  30. alert("变了");
  31. },render: function @H_502_277@() {
  32. return <div>
  33. <TextComponent/>
  34. <input type="text" onChange={this.handlerChange}/>
  35. </div>;
  36. }
  37.  
  38. })
  39.  
  40. ReactDOM.render(<WrapperCompoent/>,document.getElementById("myDiv"));
  41.  
  42.  
  43. //子组件
  44. class TextComponent extends React.Component {
  45.  
  46. render() {
  47. return <div>hello {this.props.text}!</div>
  48. }
  49. }
  50.  
  51. //props 子组件只能通过 props 来传递数据。 案例 02 event 联动
  52. //父组件
  53. var WrapperCompoent = React.createClass({
  54. getInitialState: function @H_502_277@() {
  55. return {};
  56. },//内容改变后回调
  57. handlerChange: function @H_502_277@(e) {
  58. //e 是Event事件对象 targent 是指事件的目标对象
  59. alert(e.target.value);
  60. },document.getElementById("myDiv"));
  61.  
  62. //props 而子组件只能通过 props 来传递数据。 案例 03 event
  63. //
  64. var TextComponent = React.createClass({
  65. render: function @H_502_277@() {
  66. return <div>Hello {this.props.text}!</div>;
  67. }
  68.  
  69. });
  70.  
  71. var WrapperCompoent = React.createClass({
  72.  
  73. //state 初始化
  74. getInitialState: function @H_502_277@() {
  75. return {text: ''};
  76. },//内容改变后回调
  77. handlerChange: function @H_502_277@(e) {
  78. //e 是Event事件对象 targent 是指事件的目标对象
  79. // alert(e.target.value);
  80. //改变状态
  81. this.setState({text: e.target.value});
  82. },render: function @H_502_277@() {
  83. return <div>
  84. <TextComponent text={this.state.text}/>
  85. <input type="text" onChange={this.handlerChange}/>
  86. </div>;
  87. }
  88.  
  89. })
  90.  
  91. ReactDOM.render(<WrapperCompoent/>,document.getElementById("myDiv"));
  92.  
  93.  
  94. //传参流程
  95. //1.handleChange(父组件回调)
  96. //2.setState(修改父组件的状态)
  97. //3.render(父组件重新渲染,子组件也会渲染)
  98. //3.把父组件的状态值,作为子组件的属性值传入
  99. //4.render(子组件内容改变)

第四个js

  1. //React 组件的生命周期 var MyComponent = React.createClass({ //作用于组件类,只调用一次,返回对象用于设置默认的props getDefaultProps : function@H_502_277@(){ console.log("getDefaultProps"); return {name:'null'}; },//作用于组件的实例,在实例创建时调用一次,用于初始化每个实例的state getInitialState : function@H_502_277@(){ console.log("getInitialState"); return {count:0}; },//在完成首次渲染之前调用 componentWillMount : function@H_502_277@(){ console.log("componentWillMount"); },//必选的方法,创建虚拟DOM // 只能通过this.props和this.state访问数据 // 可以返回null、false或任何React组件 // 只能出现一个顶级组件(不能返回数组) // 不能改变组件的状态 // 不能修改DOM的输出 render :() => {console.log("render"); return <div>MyComponent</div>;},//真实的DOM被渲染出来后调用,在该方法中可通过this.getDOMNode()访问到真实的DOM元素 componentDidMount : function@H_502_277@(){ console.log("componentDidMount"); },//组件接收到新的props时调用,并将其作为参数nextProps使用 componentWillReceiveProps : function@H_502_277@(nextProps){ console.log("componentWillReceiveProps"); },//组件是否应当渲染新的props或state,返回false表示跳过后续的生命周期方法,通常不需要使用以避免出现bug。 shouldComponentUpdate : function@H_502_277@(){ console.log("shouldComponentUpdate"); return true; },//接收到新的props或者state后,进行渲染之前调用 componentWillUpdate : function @H_502_277@() { console.log("componentWillUpdate"); },//完成渲染新的props或者state后调用,此时可以访问到新的DOM元素 componentDidUpdate : function @H_502_277@() { console.log("componentWillUpdate"); },//组件被移除之前被调用,可以用于做一些清理工作 componentWillUnmount : function @H_502_277@() { console.log("componentWillUnmount"); } }); ReactDOM.render(<MyComponent/>,document.getElementById("myDiv"));

猜你在找的React相关文章