我有 AboutMeText 状态并且它通过道具成功更新,我成功显示了它的值<h6>{this.state.AboutMeText}</h6>,但是当我尝试将此状态值传递给模型时,它的值变为空。我已经尝试过 {this.state.AboutMeText}或{this.props.AboutMeText}没有工作
请帮助我先生,我是 React js 的新手
<DIV className="template-profile">
<Image
url={this.state.selectedImages.profilePicture}
mode={"Profile"}
/>
<h6>Hello I'm</h6>
<h1 className="template-profile-name">
Nabnit Jha
</h1>
<h6>
{this.state.AboutMeText} // here state value display successfully
</h6>
<DIV className="template-self-info">
<Modals modalBody={this.state.AboutMeText} modalHeading="About Me"></Modals> // here state value became null
</DIV>
</DIV>
元芳怎么了
一只萌萌小番薯
相关分类