phonegap 文件选择器插件

phonegap file selector plugin

我需要上传一个文件到服务器可以是image/text/video等等

我正在使用基于云的 phonegap 构建服务来构建我的项目。

我想知道 android phone 上的 select 文件是否有类似于 web 中的插件。

我知道FileTransfer插件是用来上传文件的。

确实如此,CordovaFile is the one you need, but if you want a specific type, ImagePicker plugin for Images, and vor videos you can use CordovaCamera

希望对你有所帮助,祝你好运

我只使用 imagePicker plugin,它对我来说很好用。它是这样使用的:

window.imagePicker.getPictures(
    function(results) {
        for (var i = 0; i < results.length; i++) {
            alert('Image URI: ' + results[i]);
        }
    },
    function(error) {
        alert('Error: ' + error);
    }
);