私は非常に単純な問題で立ち往生しています。私はusd
の入力とcny
の入力を持つフォームを持っています。私はそれらのうちの1つを入力したいと思います。もう1つは、caculationによって値を表示します。Reactネイティブのテキスト入力値の問題
例
import React, { Component } from 'react';
import { View, Text, TextInput } from 'react-native';
class Buy extends Component {
constructor() {
super();
this.state = {
usd: '',
cny: ''
};
}
render() {
return (
<View style={styles.inputSection}>
<View style={styles.leftInputSection}>
<Text style={styles.inputLabel}>USD</Text>
<TextInput
placeholder='0.0'
placeholderTextColor='#999999'
style={styles.inputStyle}
keyboardType={'numeric'}
onChangeText={(usd) => this.setState({ usd })}
value={((this.state.cny) * 7).toString()}
/>
</View>
<View style={styles.rightInputSection}>
<Text style={styles.inputLabel}>CNY</Text>
<TextInput
placeholder='0.0'
placeholderTextColor='#999999'
style={styles.inputStyle}
keyboardType={'numeric'}
onChangeText={(cny) => this.setState({ cny })}
value={((this.state.usd)/7).toString()}
/>
</View>
</View>
);
}
}
あなたの答えは、ネイティブ反応し、反応しないためです。 * e *パラメータを指定していないネイティブのtextInput "onChange"に反応して、入力の値を提供するだけです。 –
@MeysamIzadmehr stackoverflow someonesコードを書くためのものではなく、あなたの問題のアイデアや解決策を与える場所です。私の答えでは、 'input'要素を置き換えて変更を行い、' e'を何反応ネイティブの 'onChange'は大きなものではなく、私は彼にウェブのための実用的なソリューションを与えました。反応ネイティブの非常に基本的な知識を持つ誰でも簡単に変換できます。 Btwネイティブで直接的に優れたソリューションを提供できると思う場合は、新しい回答を追加することもできます:) –
反応ネイティブのtextInput onChangeで* e.target.value *を使用することはできません。 –