第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

基于輸入的切換按鈕(Native Base)

基于輸入的切換按鈕(Native Base)

墨色風(fēng)雨 2023-08-18 14:35:04
我想在兩個(gè)或其中一個(gè)輸入為空時(shí)禁用按鈕。順便說一句,它是 Native Base 框架。    <View style={styles.personal} key={data}>        <Item floatingLabel>          <Label>Your name:</Label>          <Input />        </Item>        <Item floatingLabel style={{marginVertical: 20}}>          <Label>Your age:</Label>          <Input keyboardType="numeric"/>        </Item>        <Button style={{alignSelf: 'center'}} rounded disabled={false}          onPress={() => this.refs.swiper.scrollBy(1)}>            <Text style={{width: '70%', textAlign: 'center'}}>Next</Text>          </Button>      </View>我嘗試過的:state = {  inputName: "",  inputAge: "",}<Input value={this.setState({inputName: value})}/> <Input value={this.setState({inputAge: value})} keyboardType="numeric"/><Button style={{alignSelf: 'center'}} rounded           disabled={this.state.inputName==="" & this.state.inputAge==="" ? true:false }          onPress={() => this.refs.swiper.scrollBy(1)}>            <Text style={{width: '70%', textAlign: 'center'}}>Next</Text>        </Button>變量值錯(cuò)誤
查看完整描述

1 回答

?
滄海一幻覺

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超5個(gè)贊

&在這種情況下錯(cuò)過了額外的事情。

你的情況應(yīng)該是這樣的

disabled={this.state.inputName===""?||?this.state.inputAge===""???true:false?}

因?yàn)閷?duì)于邏輯 AND 運(yùn)算,只有當(dāng)輸入都為空時(shí),結(jié)果才會(huì)為 true。如果任何輸入不為空,則結(jié)果將為 false,并將啟用該按鈕。因此,您需要使用邏輯或運(yùn)算,以便當(dāng)任何輸入為空時(shí)條件將返回 true。

&& 是邏輯與運(yùn)算

& 是按位與

在這里找出& 和 &&之間的區(qū)別。

您可以執(zhí)行以下操作以將輸入值保存在狀態(tài)中。

<Input?onChangeText={val?=>?this.setState({?inputName:?val?})}?value={this.state.inputName}/>?
<Input?onChangeText={val?=>?this.setState({?inputAge:?val?})}?value={this.state.inputAge}?keyboardType="numeric"/>



查看完整回答
反對(duì) 回復(fù) 2023-08-18
  • 1 回答
  • 0 關(guān)注
  • 159 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)