我只是允许用户通过上传文件,computer
所以我真的不需要弹出窗口。
当用户单击按钮时,是否可以filepicker window
直接插入。它直接打开操作系统文件窗口而不是打开文件选择器?<input type="file">
choose file
我只是允许用户通过上传文件,computer
所以我真的不需要弹出窗口。
当用户单击按钮时,是否可以filepicker window
直接插入。它直接打开操作系统文件窗口而不是打开文件选择器?<input type="file">
choose file
您可以为此目的使用 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+"%");
}
);