我正在创建项目,我在其中添加了插件 org.apache.cordova.file-trasfer 到我需要在 index.js 中配置的地方。建议我一个例子或想法
问问题
111 次
1 回答
0
如果您已经添加了 FileTransfer 插件,那么您可以在 index.js 中创建 FileTransfer 对象,例如
var fileURL = "cdvfile://localhost/persistent/path/to/file.txt"; var ft = new FileTransfer(); ft.upload(fileURL, encodeURI(" http://some.server.com/upload.php "), 赢, 失败, 选项);
有关不同的 API 示例,请参阅FileTransfer 文档
注意:关于如何在 Visual Studio 中通过 config.xml 添加插件,请参阅管理插件文档。
于 2015-01-13T20:17:36.857 回答