菜鸟教程小白 发表于 2022-12-13 13:34:09

iOS 应用程序基本路径


                                            <p><p>我目前正在使用 Phonegap/Jekyll/Backbone 开发一个应用程序。但是,我需要一个基本路径来生成静态内容。对于 Android 平台,我使用 <code>/android_asset/www/</code> 工作正常。但是我找不到适用于 iOS 的,有人知道吗?</p>

<p>提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须异步要求 iOS 设备为您提供根路径。在 <em>deviceready</em> 函数调用中:</p>

<pre><code>window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFS, null);
</code></pre>

<p>准备就绪后,它将使用 <em>FileSystem</em> 对象进行回调,您可以从中访问完整的根路径。</p>

<pre><code>function onFS(fs) {
    alert(fs.root.fullPath);
}
</code></pre>

<p>阅读有关 PhoneGap/Cordova 文档的更多信息:<a href="http://docs.phonegap.com/en/edge/cordova_file_file.md.html#FileSystem" rel="noreferrer noopener nofollow">http://docs.phonegap.com/en/edge/cordova_file_file.md.html#FileSystem</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 应用程序基本路径,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10442131/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10442131/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 应用程序基本路径