为了账号安全,请及时绑定邮箱和手机立即绑定

使用 textInput 从用户获取值并分配给变量(React-Native)

使用 textInput 从用户获取值并分配给变量(React-Native)

MM们 2024-01-18 16:05:46
这里我想将textInput 中的数据分配给变量a。我该怎么做?(也就是说,当用户在textInput中输入数据时,我想将其分配给变量a。)import React, { Component } from 'react'import { Text, View, TextInput} from 'react-native'export default class deneme1 extends Component {    constructor(props) {        super(props);        this.state = {            a:"",                   };      }    render() {        return (            <View>                <View style={styles.textinput}>                    <TextInput                    placeholderTextColor='white'                    style={styles.textinputtext}                />                </View>            </View>        )    }}
查看完整描述

1 回答

?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

你可以试试这个


<TextInput

 placeholder={"A Variable"}

 onChangeText={(text) => this.setState({a: text}) }

 value={this.state.a}

/>


查看完整回答
反对 回复 2024-01-18
  • 1 回答
  • 0 关注
  • 94 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信