我从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
的渲染方法。”
答案 0 :(得分:0)
似乎post.ImagePath
的{{1}}部分不应该存在。
您能否展示post
对象的内容?