admin管理员组文章数量:1345116
I am trying to create empty array in react-native using es6. But while accessing it I get an error data not defined.
Here is the code snippet which I am using to initialise the array.
constructor() {
super();
this.state = {
search: "",
data: []
}
}
Here is the code through which I am trying to populate the array and at the same time logging it
.then((responseData) => {
this.setState({
data: responseData.hits.hits.map(function(search){
return{
name: search._source.service_name
}
})
})
console.log(data);
I think so there is a problem in initialisation of array can anybody rectify it?
I am trying to create empty array in react-native using es6. But while accessing it I get an error data not defined.
Here is the code snippet which I am using to initialise the array.
constructor() {
super();
this.state = {
search: "",
data: []
}
}
Here is the code through which I am trying to populate the array and at the same time logging it
.then((responseData) => {
this.setState({
data: responseData.hits.hits.map(function(search){
return{
name: search._source.service_name
}
})
})
console.log(data);
I think so there is a problem in initialisation of array can anybody rectify it?
Share Improve this question edited Dec 12, 2020 at 0:55 peterh 1 asked Aug 3, 2016 at 12:32 atifatif 7694 gold badges13 silver badges25 bronze badges2 Answers
Reset to default 6Your initializing of the array looks fine.
You just can't access data
like a local scoped variable. The data
array in your example is a property/attribute of your state object.
So you need to access your data array like this:
this.state.data
Try console.log(this.state.data)
instead of console.log(data)
本文标签: javascriptHow to initialise array in reactnative using es6Stack Overflow
版权声明:本文标题:javascript - How to initialise array in react-native using es6? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778933a2537491.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论