javascript - React native 无法为 Image.source iOS 使用本地 tmp 文件路径
<p><p>无法为 Image.source iOS 使用本地临时文件路径。</p>
<pre><code> <Image
style={styles.containerRightCakeImageTag}
source={{
isStatic: true,
uri: "file:///Users/md_007/Library/Developer/CoreSimulator/Devices/B450EF4D-7A43-4F2E-AE39-7D92427EBC7E/data/Containers/Data/Application/C2204990-8808-43C0-9678-F6A9CBA74998/Documents/6b66bfab94acc2d89d4c533a1d7ba767.jpeg"
}}
/>
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以使用 react-native-fs 获取目录(适用于 ios 和 android)</p>
<pre><code>var RNFS = require('react-native-fs');
</code></pre>
<p>图像元素看起来像:</p>
<pre><code><Image source={{uri: 'file://' + RNFS.DocumentDirectoryPath + '/directory/my.png'}} />
</code></pre></p>
<p style="font-size: 20px;">关于javascript - React native 无法为 Image.source iOS 使用本地 tmp 文件路径,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/50755784/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/50755784/
</a>
</p>
页:
[1]