react中父組件向子組件傳值

1.子組件代碼:定義props.屬性名 來接收父組件傳遞過來的值 import React, { Component } from "react"; export default class Son extends Component { render() { return <div>我是子組件---{this.props.text}</div>; } } 2.父組件代碼:在引用
相關文章
相關標籤/搜索