将窗口或模态直接插入文件按钮

时间:2013-09-27 12:49:17

标签: filepicker.io

我只是允许用户通过computer上传文件,所以我真的不需要弹出窗口。

是否可以将filepicker window直接插入<input type="file">,以便用户点击choose file按钮。它直接打开OS文件窗口而不是打开filepicker?

1 个答案:

答案 0 :(得分:1)

您可以使用filepicker.store()API实现此目的 - https://developers.inkfilepicker.com/docs/web/#store

var input = document.getElementById("store-input");
filepicker.store(input, function(InkBlob){
        console.log("Store successful:", JSON.stringify(InkBlob));
    }, function(FPError) {
        console.log(FPError.toString());
    }, function(progress) {
        console.log("Loading: "+progress+"%");
    }
);