通过 chrome 扩展上传文件作为表单数据

IT技术 javascript google-chrome google-chrome-extension
2021-02-08 16:33:52

我正在通过 chrome 扩展上传一个文件作为表单数据,我的代码如下。这里的问题是文件浏览窗口只打开一秒钟然后消失。
该问题仅出现在 Mac OS 中。

清单.json:

"background": {
  "scripts": ["jszip.js", "background.js"]
},

背景.js:

chrome.runtime.onMessage.addListener(function (msg) {
  if (msg.action === 'browse')
  {
    var myForm=document.createElement("FORM");
    var myFile=document.createElement("INPUT");
    myFile.type="file";
    myFile.id="selectFile";
    //myFile.onclick="openDialog()";
    myForm.appendChild(myFile);
    var myButton=document.createElement("INPUT");
    myButton.name="submit";
    myButton.type="submit";
    myButton.value="Submit";
    myForm.appendChild(myButton);
    document.body.appendChild(myForm);
  }
});

popup.js:

window.onload = function () {
  chrome.runtime.sendMessage({
    action: 'browse'
  });
}
2个回答

一个小小的“背景故事”:

您想让用户从弹出窗口中选择并上传文件。但是在 OSX 中,只要文件选择器对话框打开,弹出窗口就会失去焦点并关闭,从而导致其 JS 上下文也被破坏。因此,对话框会立即打开和关闭。

这是MAC 上的一个已知错误已经有一段时间了。


解决方案:

您可以将对话框打开逻辑移动到后台页面,它不受失去焦点的影响。从弹出窗口中,您可以向后台页面发送消息,请求启动浏览和上传过程(请参阅下面的示例代码)。

清单文件.json

{
    ...
    "background": {
        "persistent": false,
        "scripts": ["background.js"]
    },

    "browser_action": {
        "default_title": "Test Extension",
//        "default_icon": {
//            "19": "img/icon19.png",
//            "38": "img/icon38.png"
//        },
        "default_popup": "popup.html"
    },

    "permissions": [
        "https://www.example.com/uploads"
        // The above permission is needed for cross-domain XHR
    ]
}

弹出窗口.html

    ...
    <script src="popup.js"></script>
</head>
<body>
    <input type="button" id="button" value="Browse and Upload" />
    ...

弹出窗口.js

document.addEventListener('DOMContentLoaded', function () {
    document.getElementById('button').addEventListener('click', function () {
        chrome.runtime.sendMessage({ action: 'browseAndUpload' });
        window.close();
    });
});

背景.js

var uploadUrl = 'https://www.example.com/uploads';

/* Creates an `input[type="file]` */
var fileChooser = document.createElement('input');
fileChooser.type = 'file';
fileChooser.addEventListener('change', function () {
    var file = fileChooser.files[0];
    var formData = new FormData();
    formData.append(file.name, file);

    var xhr = new XMLHttpRequest();
    xhr.open('POST', uploadUrl, true);
    xhr.addEventListener('readystatechange', function (evt) {
        console.log('ReadyState: ' + xhr.readyState,
                    'Status: ' + xhr.status);
    });

    xhr.send(formData);
    form.reset();   // <-- Resets the input so we do get a `change` event,
                    //     even if the user chooses the same file
});

/* Wrap it in a form for resetting */
var form = document.createElement('form');
form.appendChild(fileChooser);

/* Listen for messages from popup */
chrome.runtime.onMessage.addListener(function (msg) {
    if (msg.action === 'browseAndUpload') {
        fileChooser.click();
    }
});


注意作为安全预防措施,ChromefileChooser.click() 在用户交互的结果下才会执行
在上面的例子中,用户点击弹出窗口中的按钮,它向后台页面发送一条消息,调用fileChooser.click();. 如果您尝试以编程方式调用它,它将不起作用。(例如,在文档加载时调用它不会产生任何影响。)

你好!我在 Windows 7(chrome ver. 37)下尝试了这个解决方案,并且没有触发 .click 事件。(与@ExpertSystem 评论相同)。我还尝试将文件加载逻辑直接放在弹出窗口 (window.html/js) 中,但只要我单击按钮,弹出窗口就会关闭。如果我保持开发人员工具窗口打开(右键单击插件图标 - > 检查弹出窗口),它只会保持运行(并正确执行文件加载)。任何想法/解决方案?
2021-03-14 16:33:52
行。如果您想将代码张贴在某处,如果您愿意,我可以查看。
2021-03-19 16:33:52
这绝对也不是由我的代码引起的 :) 如果我没有看到代码,我无法判断出了什么问题。
2021-03-20 16:33:52
我将您的代码集成到我的项目中。当点击“浏览和上传”按钮时,它会提示两个窗口(一个窗口固定有扩展图标(插件),另一个窗口是正常的)选择一个文件。普通窗口正在窗口上方,固定在扩展图标(插件)上。但是当我在普通窗口中点击“关闭”或“打开”按钮时。两个窗口都在关闭
2021-04-06 16:33:52
感谢您的回复,我正在努力整合您的代码。我会让你知道更新
2021-04-07 16:33:52

ExpertSystem 的解决方案对我不起作用,因为它不允许我调用后台脚本中的元素单击,但我想出了一个使用他的大部分代码的解决方法。如果您没有稍微污染当前选项卡的问题,请将他的 background.js 代码放在具有适当消息传递包装器的内容脚本中。大部分功劳归功于 ExpertSystem,我只是把事情洗了一遍。

背景:

我需要解决的问题是我希望允许通过弹出窗口上传 JSON 文件并解析到我的扩展程序中。我为此提出的解决方法需要所有三部曲的复杂舞蹈;弹出窗口、背景和内容脚本。

弹出窗口.js

// handler for import button
// sends a message to the content script to create the file input element and click it
$('#import-button').click(function() {
    chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
        chrome.tabs.sendMessage(tabs[0].id, {message: "chooseFile"}, function(response) {
            console.log(response.response);
        });
    });
});

内容.js

chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
    if (request.message == "chooseFile") {
        /* Creates an `input[type="file]` */
        var fileChooser = document.createElement('input');
        fileChooser.type = 'file';

        fileChooser.addEventListener('change', function () {
            console.log("file change");
            var file = fileChooser.files[0];

            var reader = new FileReader();
            reader.onload = function(){
                var data = reader.result;
                fields = $.parseJSON(data);
                // now send the message to the background
                chrome.runtime.sendMessage({message: "import", fields: fields}, function(response) {
                    console.log(response.response);
                });
            };
            reader.readAsText(file);
            form.reset();   // <-- Resets the input so we do get a `change` event,
                            //     even if the user chooses the same file
        });

        /* Wrap it in a form for resetting */
        var form = document.createElement('form');
        form.appendChild(fileChooser);

        fileChooser.click();
        sendResponse({response: "fileChooser clicked"});
    }

});

背景.js

chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
    if (request.message == "import") {
        fields = request.fields; // use the data
        sendResponse({response: "imported"});
    }
});

这样做的原因可能会也可能不会,因为文件输入元素是在当前选项卡的范围内创建的,该选项卡在整个过程中持续存在。

@tinyCoder 不可能保持弹出窗口打开。这只是扩展的限制。我的经理让我承担了让它保持开放一周的任务。我什至伸出手来支持。这是它的设计方式。这是不可能的。唯一的例外是,如果您打开 devtools(右键单击检查),它将保持打开状态,但这不是一个实用的解决方法。
2021-03-22 16:33:52
嗨,这是一个很棒的建议,但是有没有办法防止弹出窗口自动关闭?在用户选择文件或关闭文件选择器窗口后,它会失去焦点并关闭。
2021-03-27 16:33:52