将变量传递给图像组件 - React Native
Pass Variable into Image Component - React Native
如何将 base64 字符串 markerPass.Logo__c
传递到我的图像组件中?
<Image source={{uri: 'data:image/png;base64,' + {markerPass.Logo__c} + '\''}}/>
您可以使用 模板文字 通过 反引号 ``
<Image source={{uri: `data:image/png;base64,${markerPass.Logo__c}\'`}}/>
如何将 base64 字符串 markerPass.Logo__c
传递到我的图像组件中?
<Image source={{uri: 'data:image/png;base64,' + {markerPass.Logo__c} + '\''}}/>
您可以使用 模板文字 通过 反引号 ``
<Image source={{uri: `data:image/png;base64,${markerPass.Logo__c}\'`}}/>