gpt4 book ai didi

react-native - 如何在文本输入中的不同行中显示占位符?

转载 作者:行者123 更新时间:2023-12-04 01:42:40 24 4
gpt4 key购买 nike

我有一个带有 multiline={true} 的 TextInput。我想知道如何获取其占位符文本,例如:

Hey There!
Want any Help?
Placeholder To The Rescue!

我尝试了一些像 placeholder='Hey There!\nWant any Help?' 但没有得到我想要的东西。

我是 React Native 的新手。帮助将不胜感激!

最佳答案

找到答案了!使用大括号使它呈现出我想要的效果。我发现 React Native 在此处按原样呈现字符串,但如果在大括号内,则使用给定的格式。例如:

<TextInput
multiline={true}
placeholder='Hey There!\nHow are You?'
/>

呈现上述代码后,TextInput 将如下所示:

HeyThere!\nHow are You?

但是如果你像这样使用大括号:

<TextInput
multiline={true}
placeholder={'Hey There!\nHow are You?'}
/>

然后你会得到像这样的 TextInput:

Hey There!
How are You?

这正是我想要的!

好的,谢谢大家的回复!

关于react-native - 如何在文本输入中的不同行中显示占位符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56713459/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com