我一直在尝试构建注册应用,并且在尝试将新值提交到服务器时,在最后阶段遇到了一些问题。
这是我的剧本:
import React from 'react';
import ReactNative from 'react-native';
import { FormLabel, FormInput,Button,Text } from 'react-native-elements'
import { AppRegistry,TextInput,View,StyleSheet,length} from 'react-native';
import { StackNavigator } from 'react-navigation'
import AccountFields from './emailandpass'
import axios from 'axios';
let styles = {}
class NameFields extends React.Component{
constructor(props){
super(props);
this.state={
email:'',
password:'',
first:'',
last:'',
dob:''
}
}
componentWillReceiveProps(nextProps){
console.log("nextProps",nextProps);
}
handlePress(event){
var Url = "http://10.68.14.170:8080";
// console.log("values in register handler",role);
var self = this;
//To be done:check for empty values before hitting submit
if(this.state.first.length>0 && this.state.last.length>0 && this.state.email.length>0 && this.state.password.length>0 && this.state.dob.length>0)
{
var payload={
"first": this.state.first,
"last":this.state.last,
"email":this.state.email,
"password":this.state.password,
"dob":this.state.dob
}
axios.post(Url+'/useraccount/signup',payload)
.then(function (response) {
console.log(response.data);
if(response.data.code === 200){
<Text>
'Tal-ostja'
</Text>
}
else{
console.log("some error ocurred",response.data.code);
}
})
.catch(function (error) {
console.log(error);
});
}
else{
alert("Input field value is missing");
}
}
render() {
return(
<View>
<FormLabel
containerStyle={styles.labelContainerStyle}>Email</FormLabel>
<FormInput
ref='form2'
containerRef='containerRefYOYO'
textInputRef='textInputRef'
placeholder='Please enter your email address...'
onChangeText = {(event,newValue) =>this.setState({email:newValue})}
/>
<FormLabel containerStyle={styles.labelContainerStyle}>Password</FormLabel>
<FormInput
ref='form1'
placeholder='Please create a password...'
onChangeText ={(event,newValue) =>this.setState({email:newValue}) }
/>
<FormLabel
containerStyle={styles.labelContainerStyle}>Name</FormLabel>
<FormInput
ref='form2'
containerRef='containerRefYOYO'
textInputRef='textInputRef'
placeholder="What's your name ?"
onChangeText = {(event,newValue) =>this.setState({first:newValue})}
/>
<FormLabel containerStyle={styles.labelContainerStyle}>Surname</FormLabel>
<FormInput
ref='form1'
placeholder="What's your last name ?"
onChangeText = {(event,newValue) =>this.setState({last:newValue})}
/>
<FormLabel containerStyle={styles.labelContainerStyle}>Date of Birth</FormLabel>
<FormInput
ref='form1'
placeholder='YYYY-MM-DD'
onChangeText = {(event,newValue) =>this.setState({dob:newValue})}
/>
<Button title="Submit" onPress={(event) => this.handlePress(event)}/>
</View>
);
}
}
module.exports = NameFields
如您所见,我首先在构造函数中定义this.state
,然后定义在创建表单的JSX函数中在其下调用的handlePress()
方法。
形成某种原因,按下提交后我遇到以下错误:
无法读取属性&#39;长度&#39;未定义的。
t.value
namefields.js:33:24
Object.onPress
namefields.js:102:56
令我感到困惑,因为正如我所说,我在构造函数中定义了状态,并在要调用newValue
的表单函数中进行了输入。
我的代码出了什么问题?
答案 0 :(得分:1)
将传递给onChangeText
处理程序的参数不包含event
对象。来自docs:
onChangeText
功能文本输入文本更改时调用的回调。更改的文本作为参数传递给回调处理程序。
所以改变:
onChangeText = {(event,newValue) =>this.setState({email:newValue})}
为:
onChangeText = {(newValue) =>this.setState({email:newValue})}
......无处不在onChangeText =
答案 1 :(得分:0)
在构造函数中绑定handlePress:
constructor(props){
super(props);
this.handlePress = this.handlePress.bind(this);
this.state={
email:'',
password:'',
first:'',
last:'',
dob:''
}
}