最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to get Text component value onPress in react-native - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

5 Answers 5

Reset to default 9

This 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

发布评论

评论列表(0)

  1. 暂无评论