我想从闪烁中获取图像,但是当我控制我的对象时,它会给我取消定义.. 这是我的代码
loadimages(e)
{ e.preventDefault();
this.setState({spinner:true});
console.log('spinner');
// axios.get(`https://www.pexels.com/`).then(res=>{
// console.log(this.state.spinner);
// this.setState({images:res.data,spinner:false});
// });
axios.post("https://api.flickr.com/services/feeds/photos_public.gne?
tags=kitten&format=json")
.then((response) => {
console.log('hellodata',response.data.items);
this.setState({
images: response.data.items,
spinner:false
});
console.log('images',this.state.images);
}).catch(function(err){
console.log(err);
})
}