我正在为我的应用添加一个简单的登录屏幕,但是一旦用户通过身份验证,我就无法调用Actions.home。
我有一个按钮,当按下时,调用一个函数连接到服务器并获得auth状态,成功时,我调用Actions.home。但没有任何反应。没有错误或警告。什么都没有。
我已经尝试了它的所有形式,Actions.home,Actions.home(),{Actions.home},将Actions.home保存为构造函数中的状态,然后使用状态,......没有用。
但在我的其他屏幕中,当我在onPress道具中调用Actions.somewhere时,它可以工作。
我在这里阅读了大部分问题,关于StackOverflow的问题(没有很多),但无法理解什么是错的。我使用了所有建议的解决方案,但没有。
当我在console.log(Actions.home)时,我看到的是: enter image description here
<Scene key="root">
<Scene key="login" title="login" component={Login} hideTabBar hideNavBar initial />
<Scene key="tabsRoot" tabs tabBarStyle={[styles.tabBar, styles.tabBarShadow]} >
<Scene key="tab_home" iconName="home" icon={TabBarItem} >
<Scene key="home" title="saba" component={Home} navBar={NavBar} />
<Scene key="campaignHome" title="campaign" hideTabBar component={Campaign} navBar={NavBar} direction="vertical" />
</Scene>
......
</Scene>
</Scene>
export
default class Login extends Component {
constructor(props) {
super(props);
this.state = {
name: '',
phone: '',
shouldLogin: false,
shouldRegister: false,
error: false,
};
this._checkAuth = this._checkAuth.bind(this);
this._onNumberChanged = this._onNumberChanged.bind(this);
this._isRegistered = this._isRegistered.bind(this);
this._isNotRegistered = this._isNotRegistered.bind(this);
}
async _isRegistered(response) {
var user = response.payload.user;
this.state = {
name: user.name,
phone: user.phone,
shouldLogin: true,
};
Actions.home;
}
_isNotRegistered(response) {
var error = response.error;
if (!error.code === NOT_REGISTERED_CODE) {
this.setState({
shouldLogin: false,
shouldRegister: false,
error: true,
})
throw new AuthException("server responded with unrecognised object");
}
this.setState({
shouldLogin: false,
shouldRegister: true,
error: false,
})
}
_checkAuth() {
var {
phone
} = this.state;
var data = {
phone: phone,
}
let url = buildQuery(AuthTypes.LOGIN, data);
console.log("usl: " + url);
//connect to server
....
if(response.success) {
this._isRegistered(response);
} else {
this._isNotRegistered(response);
}
}
_onNumberChanged(event) {
var phone = event.nativeEvent.text;
this.setState({
phone: phone,
});
}
render() {
return ( < View style = {
[styles.container]
} >
< View style = {
[styles.imgContainer]
} >
< Image source = {
require('./../Images/login.png')
}
width = "200"
height = "200" / >
< /View>
<View style={[styles.form]}>
<View style={[styles.inputContainer]}>
<TextInput style={[styles.input]} placeholder="enter your phone number" onChange={ this._onNumberChanged } maxLength={12} / >
< /View>
<TouchableWithoutFeedback onPress={ this._checkAuth } >
<View style={[styles.submitContainer]}>
<View>
<Text style={[styles.text, styles.loginButton]}>login</Text >
< /View>
</View >
< /TouchableWithoutFeedback>
</View >
< /View>
)
}
}
答案 0 :(得分:4)
我认为问题在于您正试图从登录到嵌套在另一个场景中的场景。从登录环境中,您可以使用Actions.tabsRoot
,因为它是相邻场景。
这是我使用react-native-router-flux
构建的一个快速示例来测试它。
<Router>
<Scene key='pageOne' component={PageOne} initial={true}/>
<Scene key='home'>
<Scene key='pageTwo' component={PageTwo}/>
<Scene key='pageThree' component={PageThree}/>
</Scene>
</Router>
从 pageOne 我可以调用Actions.home
,它会转换到该堆栈中的第一个场景或者已启用initial
的堆栈中的场景。但是,如果我尝试从 pageOne 调用Actions.pageTwo
,则无效。
希望这会有所帮助。 :)
答案 1 :(得分:0)
你应该调用Actions.tabsRoot并使home场景初始化。
php trelloint.main