gpt4 book ai didi

javascript - 无法在 React Native 中使用 useRef() 将 current.focus() 应用于按钮

转载 作者:行者123 更新时间:2023-12-02 22:43:53 24 4
gpt4 key购买 nike

我在我的应用程序中尝试做的是登录表单。

当用户在 token 输入字段中输入内容时:

      <Input
secureTextEntry
ref={token1}
maxLength={1}
onChange={(e) => this.tokenChange(e, token2)}
/>

函数tokenChange是这样的:

tokenChange = (e, nextToken) => {
if (nextToken) {
if (nextToken.current) {
if (e.target.value != '') {
nextToken.current.focus();
}
setToken(token1.current.value + token2.current.value + token3.current.value + token4.current.value);
}
}
}

将选择下一个输入。一切正常,我应用 useRef() 来了解我当前关注的标记,并且我还尝试将其应用于 Button 元素。

  const token1 = useRef();
const token2 = useRef();
const token3 = useRef();
const token4 = useRef();
const submitBtn = useRef();

当我试图将注意力集中在按钮上时,问题就出现了。我在输入和按钮中都使用了 ref={} ,但我不知道我做错了什么,因为我在文档中没有找到任何内容。就像输入一样,我将引用链接到按钮,如下所示:

  <Button
raised
title={tituloBtn}
ref={submitBtn}
onPress={() => onSubmit(email, password)}
/>

因此,我正在运行我的应用程序,我可以从一个输入传递到另一个输入,但是当从第四个 token 传递到提交按钮时,我收到此错误:

Error when trying to focus on Button element, using reference

这是我的功能组件的一般代码:

const FormLogin = ({ titulo, tituloBtn, onSubmit, estadoApp }) => {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [token, setToken] = useState('');

const token1 = useRef();
const token2 = useRef();
const token3 = useRef();
const token4 = useRef();
const submitBtn = useRef();

tokenChange = (e, nextToken) => {
if (nextToken) {
if (nextToken.current) {
if (e.target.value != '') {
nextToken.current.focus();
}
setToken(token1.current.value + token2.current.value + token3.current.value + token4.current.value);
}
}
}

return (
<View style={estilos.contenedor}>
<Text style={estilos.titulo} h3>{titulo}</Text>
<Espaciador />
<Input
placeholder="correo@ejemplo.com"
value={email}
onChangeText={setEmail}
keyboardType='email-address'
autoCapitalize="none"
autoFocus
label="Ingresa tu correo"
leftIcon={
<MaterialIcons
style={estilos.icon}
name="email"
/>
}
/>
<Espaciador />
<Input
placeholder="******"
value={password}
onChangeText={setPassword}
secureTextEntry
clearTextOnFocus
autoCapitalize="none"
label="Ingresa tu contraseña"
leftIcon={
<Ionicons
style={[estilos.icon, {fontSize: 35}]}
name="md-lock"
/>
}
/>
<View style={estilos.tokenGroup}>
<Input
style={estilos.token}
secureTextEntry
keyboardType='numeric'
ref={token1}
maxLength={1}
onChange={(e) => this.tokenChange(e, token2)}
/>
<Input
style={estilos.token}
secureTextEntry
keyboardType='numeric'
ref={token2}
maxLength={1}
onChange={(e) => this.tokenChange(e, token3)}
/>
<Input
style={estilos.token}
secureTextEntry
keyboardType='numeric'
ref={token3}
maxLength={1}
onChange={(e) => this.tokenChange(e, token4)}
/>
<Input
style={estilos.token}
secureTextEntry
keyboardType='numeric'
ref={token4}
maxLength={1}
onChange={(e) => this.tokenChange(e, submitBtn)}
/>
</View>
{estadoApp.errorMensaje
? <Text style={estilos.error}>{estadoApp.errorMensaje}</Text>
: null}
<Espaciador />
<Button
raised
title={tituloBtn}
ref={submitBtn}
onPress={() => onSubmit(email, password)}
/>
</View>
);
};

最佳答案

假设您使用的是 react-native-elementsButton 组件没有 focus 方法。

请参阅文档:https://react-native-elements.github.io/react-native-elements/docs/button.html

来源:https://github.com/react-native-elements/react-native-elements/blob/next/src/buttons/Button.js

在按钮上调用 focus 时,您希望发生什么行为?

关于javascript - 无法在 React Native 中使用 useRef() 将 current.focus() 应用于按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58491516/

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