菜鸟教程小白 发表于 2022-12-13 15:57:58

javascript - React native 无法为 Image.source iOS 使用本地 tmp 文件路径


                                            <p><p>无法为 Image.source iOS 使用本地临时文件路径。</p>

<pre><code>    &lt;Image
      style={styles.containerRightCakeImageTag}
      source={{
      isStatic: true,
      uri: &#34;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&#34;
      }}
    /&gt;
</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(&#39;react-native-fs&#39;);
</code></pre>

<p>图像元素看起来像:</p>

<pre><code>&lt;Image source={{uri: &#39;file://&#39; + RNFS.DocumentDirectoryPath + &#39;/directory/my.png&#39;}} /&gt;
</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]
查看完整版本: javascript - React native 无法为 Image.source iOS 使用本地 tmp 文件路径