0

我开始在 xcode 中编写 phonegap 应用程序。我正在使用服务器编写更新检查器应用程序。首先,我使用服务器中的 json 文件检索应用程序内容。然后我需要到达 iphone 目录以便与服务器比较这个应用程序是否存在。那么,如何到达phonegap 中的iphone 目录。谢谢 ps:对不起我的英语。

4

1 回答 1

0

使用 File api:http ://docs.phonegap.com/en/1.8.1/cordova_file_file.md.html#File 您需要更新 Cordova.plist 文件:

<key>Plugins</key>
<dict>
    <key>File</key>
    <string>CDVFile</string>
</dict>

<key>Plugins</key>
<dict>
    <key>FileTransfer</key>
    <string>CDVFileTransfer</string>
</dict>

然后,您可以使用 DirectoryReader/FileReader API 检查您的文件。请注意,iOS 沙盒应用程序意味着您只能看到与您的应用程序隔离的文件系统的一部分。

于 2012-06-23T18:46:58.287 回答