如何访问图像源uri的本地反应道具?

时间:2016-06-03 08:59:45

标签: javascript react-native

基本上,要在Image中声明图像源uri,我们将执行以下操作:

<Image source={{uri: '{this.props.imageSource}' }} style={style.cardPicture} />

问题是如何在uri中访问道具?

我尝试了以下内容:

driver.runAppInBackground(seconds);

没用。我也尝试了其他几个,但不知何故无法做到。

2 个答案:

答案 0 :(得分:0)

直接使用道具

<Image source={{uri: this.props.imageSource }} style={style.cardPicture} />

as&#39; this.props.imageSource&#39;将创建一个值为this.props.imageSource

的字符串

答案 1 :(得分:0)

比我想象的要简单得多。事实证明只是直接写道具而没有花括号或任何东西。

即,

<Image source={{uri: this.props.imageSource }} style={style.cardPicture} />