我正在创建项目,我在其中添加了插件org.apache.cordova.file-trasfer,我需要在index.js.中配置我的示例或想法
答案 0 :(得分: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”),win,fail,options);
请参阅FileTransfer doc了解不同的API示例
注意:请参阅Manage Plugins documentation,了解如何通过Visual Studio中的config.xml添加插件。