I'm a new react-native developer. I want to get the value of Text ponent using onPress and pass it to a function.
<Text onPress={()=>this.display}>Hello World</Text>
display= (text) =>{
console.log(text);//this should print Hello world
}
I'm a new react-native developer. I want to get the value of Text ponent using onPress and pass it to a function.
<Text onPress={()=>this.display}>Hello World</Text>
display= (text) =>{
console.log(text);//this should print Hello world
}
Share
Improve this question
edited Apr 1, 2024 at 7:54
kenmistry
2,1431 gold badge22 silver badges30 bronze badges
asked Sep 1, 2019 at 16:37
Ismail ChIsmail Ch
331 silver badge5 bronze badges
2
- stackoverflow./questions/48206819/… – xiawi Commented Sep 1, 2019 at 16:55
- 2 Possible duplicate of React native:how to get Text value on a button click? – xiawi Commented Sep 1, 2019 at 16:56
5 Answers
Reset to default 9This method can be used to get text from a text onPress event
<Text onPress={(event) => console.log(event._dispatchInstances.memoizedProps.children)} >{value}</Text>
I'm not an expert on React Native. I got some ideas from this Stackoverflow Link
But I think you can set up a ref
on the Text
ponent
<Text ref={(elem) => this.textElem = elem} onPress={()=>this.display}>Hello World</Text>
For your event handler, you can do
display = () =>{
console.log(this.textElem.props.children);//this should print Hello world
}
onPress={(e) => console.log(e, word)}
Class {dispatchConfig: {…}...} 'word'
word argument will carry the value of the ponent inner text, and the e will carry the event object.
practical example:
const wordSelected = (e, word) => {
console.log(word);
};
<TouchableOpacity onPress={(e) => wordSelected(e, word)}>
<Text>print me out</Text>
</TouchableOpacity>
print me out
You need can use the ref attribute to access the button's Text value.
<Text ref='myText'>This is my text</Text>
<Button onPress={()=>this.display(this.refs.myText.props.children)} title='Press Me'/>
//this should print Hello world
display= (text) =>{
console.log(text);
}
Alternatively, just store it in a variable:
const myText = "This is my text"
<Text onPress={()=>this.display}>{myText}</Text>
display = () => {
console.log(myText);
}
<Text onPress={()=>this.display('Hello World')}></Text>
display= (text) =>{
console.log(text);//this should print Hello world
}
Try this