假设这是一个组件
class Wysiwyg extends Component {
constructor(props) {
super(props);
}
render() {
return(
<View>
<TextInput placeholder="Type here" />
</View>
)
}
}
AppRegistry.registerComponent('AwesomeProject', () => Wysiwyg)
我输入:“棕色的大眼睛!”
现在,如果我从文本输入中选择“大”。如何获取选定的文本输入值,以便在按下按钮时将“大”更改为大粗体。