从Parse中反映原生图像

时间:2015-07-23 21:28:10

标签: image parse-platform add react-native

我正在尝试将图像从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}}/>

它不起作用。

1 个答案:

答案 0 :(得分:0)

一切正常!!!

var imageFile = this.props.tweet.get('photoprofile');
var imageURL = imageFile.url();  
...code
<Image  source=  {{uri: imageURL}}
              style={{width: 50, height: 50}} />