首页 > 解决方案 > 如何显示存储在变量中的图像?

问题描述

在天才聊天中,有一个image字段可以是指向要显示的图像的 URL。这是一个消息示例:

{
    _id: 30,
    createdAt: new Date(),
    image: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Paris_-_Eiffelturm_und_Marsfeld2.jpg/280px-Paris_-_Eiffelturm_und_Marsfeld2.jpg',
    user: {
      _id: 2,
      name: 'React Native',
    },
  },

对于存储在变量中的图像文件img,如何在聊天消息中显示它?message.image = img不工作。

标签: chatreact-native-gifted-chat

解决方案


您可以将 url 传递给源。

喜欢

<Image
    source={{uri: img}}
    />

推荐阅读