我是新來的React,所以我不知道我想要什麼是可能的。從生成的子組件中訪問父方法
考慮以下陣營組成:
export default class BBCode extends Component {
render() {
return (
<div>
{parser.toReact(this.props.content.content)}
</div>
)
}
}
我使用呈現包含BB代碼的HTML標籤,並在某些情況下反應的組分的字符串庫。這由功能{parser.toReact}
完成。
我想通過由parser.toReact
函數生成的任何組件訪問此組件中的方法。
有沒有辦法將一個道具傳遞給這個函數,然後將這個函數應用到生成的任何組件上?
不'parse.toReact'返回一個字符串數組和/或反應成分? – nem035