TypeError:未定义不是一个对象(评估'this.props') - React Native
2016-04-09
8030
当我在获取 json 响应后尝试导航到下一个视图时,出现了这种类型错误。但是如果我使用 json 响应获取方法之外的方法,我的
this.props.navigator.push({id:'HomeCaseList')
可以正常工作。有人能帮我吗?
click 事件
<MKButton
style={{marginLeft:10, marginRight:10,marginTop:10,marginBottom:350,height:40, width:400}}
backgroundColor={'#fff'}
//shadowRadius={2}
//shadowOffset={{width:0, height:2}}
shadowOpacity={.7}
shadowColor="black"
onPress={
// navigator.push();
this.loginToApp.bind(this)
}>
login 函数
gotoNext() {
fetch('http://url/login/', {
credentials: 'same-origin',
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
username: 'wasalaa',
password: 'a',
})
}).then(function(response) {
//console.log(response.headers.get('Content-Type'))
//console.log(response.headers.get('Date'))
//console.log(response.status)
//console.log(response.statusText)
//console.log('json',response
//console.log(response.headers.get('JSESSIONID'))
return response.json()
}).then(function(json){
console.log('login response',json)
if(json.message_code === "SUCCESS"){
console.log('user logged')
this.props.navigator.push({
id: 'HomeCaseList',
//sceneConfig: Navigator.SceneConfigs.FloatFromBottom,
});
}
}).catch(function(err){
console.log('error', err)
})
}
1个回答
在回调中
this
指的是全局范围(
在浏览器中它是
window
,在 node.js 中它是
global
,如果你使用
严格模式
,这将是
undefined
)而不是你的组件,你应该设置
this
//....
.then(function(json) {
if (json.message_code === "SUCCESS") {
this.props.navigator.push({
id: 'HomeCaseList',
// sceneConfig: Navigator.SceneConfigs.FloatFromBottom
});
}
}.bind(this))
^^^^^
// ....
Oleksandr T.
2016-04-09