1
假設這是一個分量獲取從文本輸入所選文本
class Wysiwyg extends Component {
constructor(props) {
super(props);
}
render() {
return(
<View>
<TextInput placeholder="Type here" />
</View>
)
}
}
AppRegistry.registerComponent('AwesomeProject',() => Wysiwyg)
我打字:「棕色的大眼睛」
現在,如果我從文本輸入中選擇「大」。如何獲得選定的文本輸入值,以便我可以按下按鈕將「Big」更改爲Big粗體。
我會盡快查詢並儘快與您聯繫。謝謝。 – Kakar