显示从ReactNative中的sqlite Blob加载的图像

时间:2020-03-12 10:54:53

标签: reactjs react-native

这是我的实现

return (
  <View key={page.ItemID} collapsable={false}>
    <Image
      style={{ width: 100, height: 100 }}
      source={{uri: URL.createObjectURL(new Blob(blobData, {type: "image/png"}))}}
    />
    <Text>Test</Text>
  </View>
);

运行npx react-native run-ios后发生错误,详细信息在这里: undefined is not a function (near '...parts.map...')

1 个答案:

答案 0 :(得分:0)

我要求,请检查您给定的uri的价值。您可以知道问题出在哪里。

在下面的链接中检出uri的可能值。 https://reactnative.dev/docs/image#source