摘要: 对于组件来说,通信无非两种,父子组件通信,和非父子组件通信 一、父子父子组件通信 1、父组件给子组件传值 对于父组件来说,props是他们之间的媒介 class Parent extends Component{ state = { msg: 'start' }; componentDidMount 阅读全文
posted @ 2018-05-29 19:52 Rachid 阅读(316) 评论(1) 推荐(1) 编辑