iPhone:10.3
WeexVersion: 0.9.5
千牛 5.9.3
'use strict';
import {createElement, Component, render} from 'rax';
import {View, Text, Modal, TextInput} from 'nuke';
import QN from 'QAP-SDK';
class Demo extends Component {
constructor(props) {
super(props);
}
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
欢迎使用千牛!
</Text>
<Text style={styles.instructions}>
编辑src/index.jsx文件,开始QAP之旅,
</Text>
<TextInput value="test" style={styles.input}></TextInput>
</View>
);
}
}
const styles = {
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
input: {
width: '500rem',
height: '56rem',
backgroundColor: '#fff',
}
};
render(<Demo />);
export default Demo;
如上面代码, 即使 <TextInput value="2" style={styles.input}></TextInput>
还是能修改input的值
所以如果input的onChange事件里对input绑定的state属性进行修改的话
如果前后两次state都是相同的话, input的value并不会改变,
'use strict';
import {createElement, Component, render} from 'rax';
import {View, Text, Modal, TextInput} from 'nuke';
import QN from 'QAP-SDK';
class Demo extends Component {
constructor(props) {
super(props);
this.state = {
value: 'abc',
};
}
onChangeWithTextInput = () => {
console.time('input');
this.setState({value: 'test'});
//this.setState({value: Math.random() > 0.5 ? '1' : '0'})这样没问题
}
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
欢迎使用千牛!
</Text>
<Text style={styles.instructions}>
编辑src/index.jsx文件,开始QAP之旅,
</Text>
<Text>{this.state.value}</Text>
<TextInput value={this.state.value} onChange={this.onChangeWithTextInput} style={styles.input}></TextInput>
</View>
);
}
}
const styles = {
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
input: {
width: '500rem',
height: '56rem',
backgroundColor: '#fff',
}
};
render(<Demo />);
export default Demo;
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。