[reactNative]Propsを挿入...
1125 ワード
登録デバイスのラベル名を親からPropsとして受信して表示し、Propsとして受信し続ける値をUndefinedとすることを実現する.
原因は簡単すぎる.
変数を宣言すると,関数に値を割り当て,関数にのみ記録し,正常と誤認する.
次のように変数値の設定を制御します.
const [deviceLabelName, setDeviceLabelName] = useState('');
const pressButton = () => {
setModalVisible(true);
console.log(「転送するデバイス3:」+デバイス名);
setDeviceLabelName(deviceName);
};
デバイスにPropsを入れます.
一つ一つはっきり言う.
原因は簡単すぎる.
変数を宣言すると,関数に値を割り当て,関数にのみ記録し,正常と誤認する.
次のように変数値の設定を制御します.
const [deviceLabelName, setDeviceLabelName] = useState('');
const pressButton = () => {
setModalVisible(true);
console.log(「転送するデバイス3:」+デバイス名);
setDeviceLabelName(deviceName);
};
デバイスにPropsを入れます.
<BottomSheet
modalVisible={modalVisible}
setModalVisible={setModalVisible}
deviceName={deviceLabelName}
/>
デバイスラベル入力を正常に表示一つ一つはっきり言う.
Reference
この問題について([reactNative]Propsを挿入...), 我々は、より多くの情報をここで見つけました https://velog.io/@timlee188/React-Native-Props-삽질テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol