【发布时间】:2019-12-30 22:32:15
【问题描述】:
您好,我想要一个 textArea 以便让用户在我的应用中发送评论消息。那么如何检索用户使用 this 组件编写的消息呢?
render() {
return (
<Container>
<Content padder>
<Item style = {{ marginBottom: 10}}>
<Input placeholder="Email" />
</Item>
<Form style = {{ marginBottom: 20}}>
<Textarea rowSpan={3} bordered placeholder="Votre message" />
</Form>
<Button success>
<Text>Envoyer</Text>
</Button>
</Content>
</Container>
);
}
我希望能够获取用户的电子邮件和消息。谢谢 !
【问题讨论】: