想要在反应本机中将“ @”与状态连接起来

时间:2018-11-06 21:37:22

标签: react-native

大家好,我想将“ @”与我的状态串联起来。.我要在我的文本框中输入此名称,名称与instagram评论回复相同。但是当我尝试与我的状态串联时,它只会给我“ @”在我的文本框中签名 这是我要连接的功能代码

 PostReply(property){


 let showChar=`"@"`+`${this.state.showUserName}`
 this.setState({showreplyWithChar:showChar})
 }

以及我的渲染功能

            <Input placeholder='Add a Comment' value= 
        {this.state.showreplyWithChar} style={{}} onChangeText= 
       {(text)=>this.updatevalue(text)}/>

你们的任何建议吗?谢谢

0 个答案:

没有答案