我正在试图通过giphy api显示GIF。 Gifs需要时间在屏幕上显示,所以我想在中间显示一个微调器。 onLoadEnd事件似乎永远不会在Image标记上触发,因此spinner实际上无休止地运行,因为我永远无法在我的状态下更新加载。我在这里做错了什么?
import React, { Component } from 'react';
import { View, Text, ScrollView, Image} from 'react-native';
import axios from 'axios';
import QuoteDetail from './quote_detail'
import Spinner from './spinner'
// class based component knows when it's gona be rendered
class QuoteList extends Component {
state = { quotes: [],
giphyUrl: 'https://media.giphy.com/media/nZQIwSpCXFweQ/giphy.gif',
loading: true
};
componentWillMount() {
console.log('Again?')
axios.get('https://api.tronalddump.io/search/quote?query='+this.props.characterName)
.then(response => this.setState({ quotes: response.data._embedded.quotes }))
this.getGiphy()
}
getGiphy() {
console.log('getgif')
const GiphyUrl = "https://api.giphy.com/v1/gifs/search?api_key=mBJvMPan15t7TeLs8qpyEZ7Glr5DUmgP&limit=1&q=" + this.props.characterName.replace(" ", "+");
console.log(GiphyUrl)
axios.get(GiphyUrl)
.then(response => {
console.log(response)
console.log(response.data.data[0].url)
this.setState({ giphyUrl: response.data.data[0].images.original.url})
console.log(this.state)
})
}
renderQuotes() {
return this.state.quotes.map(
quote => <QuoteDetail key={quote.quote_id} quote={quote}/>
);
}
render() {
if (this.state.loading) {
return < Spinner />;
}
else {
return (
<ScrollView>
<View style={styles.viewStyle}>
<Image
source={{uri: this.state.giphyUrl}}
key={this.state.giphyUrl}
style={styles.gifStyle}
onLoadEnd={() => console.log('im done loading')}
/>
<Text style={styles.vsStyle}>VS</Text>
<Image
source={{ uri: "https://media.giphy.com/media/xTiTnHXbRoaZ1B1Mo8/giphy.gif"}}
key="https://media.giphy.com/media/xTiTnHXbRoaZ1B1Mo8/giphy.gif"
style={styles.gifStyle}
/>
</View>
{this.renderQuotes()}
</ScrollView>
);
}
}
}
const styles = {
gifStyle: {
height: 200,
width: 190
},
viewStyle: {
flexDirection: 'row'
},
vsStyle: {
marginTop: 95,
marginLeft: 5,
marginRight: 5,
fontWeight: 'bold',
fontSize: 20
}
};
export
默认QuoteList;
答案 0 :(得分:0)
这里看起来有点不对的是getGiphy和renderQuotes属性,它们不是箭头函数,或者不在构造函数中绑定“this”。 根据您的代码判断,您不能使用setState函数导致错误的“this”范围。
试试看这是否有效
getGiphy = () => {...}
renderQuotes = () => {...}
您确定没有收到类似“setState未定义”的错误吗?
答案 1 :(得分:0)
您的组件使用州属性&#39; loading&#39;设为true。在渲染方法中,您有条件地渲染您的微调器 - 或 - 包含图像的滚动视图,具体取决于是否加载&#39;是的,我在代码示例中没有看到任何“加载”的地方。永远都是假的。这意味着你的<Image />
永远不会被渲染,所以它永远不会被加载,所以永远不会调用onLoadEnd。
我仍然只会有条件地渲染微调器,但会更像这样:
render() {
return (
<View>
<ScrollView>
<View style={styles.viewStyle}>
<Image
source={{uri: this.state.giphyUrl}}
key={this.state.giphyUrl}
style={styles.gifStyle}
onLoadEnd={() => this.setState({loading: false})}
/>
<Text style={styles.vsStyle}>VS</Text>
<Image
source={{uri:"https://media.giphy.com/media/xTiTnHXbRoaZ1B1Mo8/giphy.gif"}}
key="https://media.giphy.com/media/xTiTnHXbRoaZ1B1Mo8/giphy.gif"
style={styles.gifStyle}
/>
</View>
{this.renderQuotes()}
</ScrollView>
{this.state.loading && <Spinner />}
</View>
);
}
给你的微调器一个绝对位置,使它渲染滚动视图。