在React Native中获取错误“图像源错误”

时间:2016-02-10 07:43:34

标签: ios react-native

我从react native ios项目中获取来自Web API服务的数据,我收到了此消息

  

RCTURLRequestHandlers RCTDataRequestHandler:0x7a11c0e0和RCTImageStoreManager:0x7a6c46a0都报告他们可以处理请求NSURLRequest:0x7a28bb10 {URL:%250D%250A%250D%250Ahttps://webApiURL/post1.png},并具有相同的优先级(0 )。这可能会导致非确定性行为。

如何解决此问题?

我以这种方式分配了Image源

<Image source={{uri: post.ImagePath}} />

当我试图删除“uri”时

<Image source={post.ImagePath} />

我收到了一条警告信息

  

“警告:propType失败:提供给source的道具Image无效。请检查StaticRenderer的渲染方法。”

1 个答案:

答案 0 :(得分:0)

似乎post.ImagePath的{​​{1}}部分不应该存在。

您能否展示post对象的内容?