我正在尝试将图像从Parse添加到React Native Project。 添加文字一切顺利:
<Text style={{flex: 1, fontSize: 14, textAlign: 'justify', color: 'black', }}>
{this.props.tweet.get('username')}
</Text>
但我无法添加图片:
<Image source={this.props.tweet.get('photo')}
style={{width: 50, height: 50}}/>
我也在尝试
var photo = this.props.tweet.get('photoprofile');
....code
<Image source={{uri: {photo}}}
style={{width: 50, height: 50}}/>
和
var photo = this.props.tweet.get('photoprofile');
....code
<Image source={photo}
style={{width: 50, height: 50}}/>
它不起作用。
答案 0 :(得分:0)
一切正常!!!
var imageFile = this.props.tweet.get('photoprofile');
var imageURL = imageFile.url();
...code
<Image source= {{uri: imageURL}}
style={{width: 50, height: 50}} />