图像没有出现在反应中

时间:2017-12-14 22:08:15

标签: reactjs meteor react-native

我将图像存储在我要显示的Meteor App中,只显示文本。 这是组件

Flowable<Long> result = tickEverySecond.throttleLast(5, TimeUnit.SECONDS, testScheduler);

}

,json文件如下所示:

 render(){

    const{nom, emails, picture} = this.props.navigation.state.params;
    console.log({picture})

    return(
      <View>
          <Card>
            <Image
            style={{width: 50, height: 60}}
            source={{uri: picture}}
            />
            <Text>{nom}</Text>
            <Text>{emails[0].email}</Text>
          </Card>
        </View>

      );
}

0 个答案:

没有答案