在提交按钮上,我检查用户是否正常。 但我无法在回调中访问我的道具。
Meteor.loginWithPassword({username:username}, password, function(error){
if(!error){
this.props.router.push('/');
}
});
constructor(props) {
super(props)
this.state = {
username: '' ,
password:'',
errors: [],
alertVisible: false
};
我的按钮:
<Button type='submit' onClick={this.onClickLogIn.bind(this)}>Go</Button>
我该怎么办?
答案 0 :(得分:0)
解决:
Meteor.loginWithPassword({username:username}, password, (error) => {
if(!error){
this.props.router.push('/ltr/dashboard');
}
});