上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 33 下一页

2019年7月10日

摘要: react的input的每一种类型都要绑定onChange事件的,绑定onChange事件要传入事件对象的 react的单选框需要绑定checked属性的 循环input选项的写法: 阅读全文

posted @ 2019-07-10 09:32 猫头唔食鱼 阅读(4022) 评论(0) 推荐(0) 编辑

2019年7月9日

摘要: 1.通过bind获取事件对象获得被点击的dom元素 2.通过箭头函数获取被点击的dom元素(在箭头函数中传入e) 阅读全文

posted @ 2019-07-09 00:27 猫头唔食鱼 阅读(1494) 评论(0) 推荐(0) 编辑

2019年7月8日

摘要: 1.使用bind 2.使用箭头函数 阅读全文

posted @ 2019-07-08 21:30 猫头唔食鱼 阅读(4331) 评论(0) 推荐(0) 编辑

2019年7月5日

摘要: react引入本地图片: react引入本地图片, 需要import一个变量,然后在src标签中,绑定这个变量。 需要注意的是: 1.assets文件夹需要放在src文件夹里 2.react的img标签需要 / 结束 react 引入远程图片 react引入远程图片,就像平时一样写img标签一样。s 阅读全文

posted @ 2019-07-05 21:24 猫头唔食鱼 阅读(2258) 评论(0) 推荐(1) 编辑

摘要: npm i ---------- yarn npm run dev ------- yarn start npm run build ------- yarn run build npm i xxxx --save ------ yarn add -S 阅读全文

posted @ 2019-07-05 20:43 猫头唔食鱼 阅读(341) 评论(0) 推荐(0) 编辑

2019年6月30日

摘要: 1.componentWillMount 2.render 3.componentDidMount 4.componentWillUpdate 5.render 6.componentWillReceiveProps 这个生命周期用在子组件上: 触发时机是: (1)子组件接收了父组件传递的值 (2) 阅读全文

posted @ 2019-06-30 23:25 猫头唔食鱼 阅读(144) 评论(0) 推荐(0) 编辑

2019年6月23日

摘要: react里子组件不能直接操作父组件的数据。 所以要从父组件传递一个方法给子组件, 子组件获取到该方法后,把子数据传入该方法, 父组件才能获取到子数据 例子: 子组件 Child.js 父组件App.js 使用箭头函数的写法 子组件: 父组件 阅读全文

posted @ 2019-06-23 18:32 猫头唔食鱼 阅读(6900) 评论(0) 推荐(1) 编辑

2019年6月15日

摘要: 删除元素,不要直接操作state里面的值,需要把要更改的值复制一份。 所以使用展开操作符,把数组复制一遍。 阅读全文

posted @ 2019-06-15 22:03 猫头唔食鱼 阅读(5645) 评论(0) 推荐(0) 编辑

2019年6月14日

摘要: import React ,{Component} from 'react' class App extends Component{ constructor(props){ super(props) this.state = { list:["星期一","星期二","星期三"] } } render(){ return ( ... 阅读全文

posted @ 2019-06-14 00:46 猫头唔食鱼 阅读(2123) 评论(0) 推荐(0) 编辑

2019年6月12日

摘要: import React, { Component } from 'react' class App extends Component { constructor(props) { super(props) //this.state = {} 定义数据 this.state = { inputValue: "" } } render()... 阅读全文

posted @ 2019-06-12 23:37 猫头唔食鱼 阅读(4080) 评论(0) 推荐(0) 编辑

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 33 下一页