简体   繁体   English

React Native:有没有办法将选择器重置为初始状态?

[英]React Native: Is there a way to reset the picker to the initial state?

Is there a way to reset the picker to the initial state in which it was first displayed when I clicked on the onChangeCheckbox?有没有办法将选择器重置为我单击 onChangeCheckbox 时首次显示的初始状态? In my example I show the checkbox and also the picker and I need to just display the initial information that was in the picker when I entered the screen.在我的示例中,我显示了复选框和选择器,我只需要显示进入屏幕时选择器中的初始信息。

THIS IS THE CHECKBOX这是复选框

const onChangeCheckbox = (n, newValue, item) => {
    console.log('onChangeCheckbox n,newValue: ', n, newValue);
    const newArray = [...checkboxDisplay];
    newArray[n] = !checkboxDisplay[n]; // refresh available device
    setCheckboxDisplay(newArray);
    const [aSerialArray, serialBoolArray] =filterDevicesByUserId (n, deviceTypeSelected[n],item, newValue);
    resetNumberAndDegem(n, aSerialArray);
  };

THIS IS THE PICKER这是选择器

function ElementDeviceType(props) {
    const index = props.index;
    const item = props.item;
    const color = deviceTypePickerEnable[index] ? 'white' : 'gray';
    return (
      <View style={styles.deviceTextView}>
        <Text style={[styles.label1, { color: color }]}>device:</Text>
        <View style={styles.deviceBoxView}>
          <Picker
            mode="dropdown"
            enabled={deviceTypePickerEnable[index]}
            selectedValue={deviceTypeSelected[index]}
            style={styles.devicePicker}
            onValueChange={(newValue) => onChangeDeviceType(index, newValue,item)}
          >
    <Picker.Item label="choose device" value="" enabled={false} color={'#ddd'} itemStyle={{
                                                color: '#ccc'
                                            }} />
            {deviceTypeDisplayed[index].map((elem, i) => (
              <Picker.Item
                label={getDeviceTestName(elem)}
                value={elem}
                key={i}
              />
            ))}
          </Picker>
        </View>
      </View>
    );
  }

THIS IS THE onChangeDeviceType FUNCTION OF THE PICKER这是选择器的 onChangeDeviceType 函数

const onChangeDeviceType = (n, newDeviceType,item) => {
    console.log('onChangeDeviceType n,newDeviceType,item:', n, newDeviceType,item);
    if(newDeviceType != ''){
    const newATyperray = [...deviceTypeSelected];
    newATyperray[n] = newDeviceType;
    setDeviceTypeSelected(newATyperray);
    
    const [aSerialArray, serialBoolArray] =filterDevicesByUserId (n, newDeviceType,item,checkboxDisplay[n]) ;
    
    const deviceArrayS = [...deviceNumberSelected];
    deviceArrayS[n] = aSerialArray[0]; // set the selected serial to the 1st available
    onChangeDeviceNumber(n, aSerialArray[0],item);
    updateAllInputs(
      UPDATE_TYPE.DEVICE_TYPE,
      newATyperray,
      deviceArrayS,
      serialBoolArray
    );
    }
  };

You can do it with the help of react-native hooks.你可以在 react-native hooks 的帮助下做到这一点。

Here is an example code for your reference : https://thewebdev.info/2021/02/05/how-to-reset-to-initial-state-with-react-hooks/这是一个示例代码供您参考: https ://thewebdev.info/2021/02/05/how-to-reset-to-initial-state-with-react-hooks/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM