React
苏喂苏喂苏喂su
这个作者很懒,什么都没留下…
展开
-
react父子组件之间传值
父组件:import React, { Component } from 'react';import Child from './child2'class Parents extends Component { constructor(props) { super(props); this.state = { parentValue: '这是父组件传给子组件的值' } } getValue(val) { console.log(val原创 2020-09-30 16:54:50 · 248 阅读 · 0 评论 -
react父组件和子组件之间相互调用方法
父组件:import React, { Component } from 'react';import Child from './child2'class Parents extends Component { constructor(props) { super(props); } handleCancel = () => { console.log('父组件的方法被子组件调用了'); } childClick = () => {原创 2020-09-30 15:09:37 · 900 阅读 · 0 评论 -
react报错:Cannot read property ‘setState‘ of undefined
错误如下:代码如下:原因是this已经不是当前组件的this了,可以在方法里加一个bind改变this的指向原创 2020-09-29 16:10:50 · 482 阅读 · 0 评论