如何在Firefox SDK中使用JSZip读取文件zip

时间:2016-07-12 10:48:30

标签: firefox-addon firefox-addon-sdk jszip

我想让插件工作以在本地提取zip文件(here)。但是在使用firefox SDK时我遇到了问题。因为 fileinput 并且错误格式不受支持,因为 dataType 不是ArrayBuffer,所以无法读取zip文件,因为有些错误。

HTML

<input type="file" name="file" id="import" class="hide" />

myscript.js

var fileInput = document.getElementById('import');
fileInput.addEventListener('change', function(e) {
    var zipFileToLoad = fileInput.files[0];
    var tampJson = [];
    JSZip.loadAsync(zipFileToLoad)
            .then(function(zip) {
                console.dir(zip);
                zip.forEach(function (relativePath, zipEntry) {
                    if(zipEntry.dosPermissions == null){
                        alert('Permissions trouble !')
                    }
                    if(typeof(zipEntry['_data']['compressedContent']) != 'undefined'){
                        //var text = String.fromCharCode.apply(null, new Uint8Array(zipEntry['_data']['compressedContent']));
                        var text = new TextDecoder("utf-8").decode(zipEntry['_data']['compressedContent']);
                        var dec = text.toString();

                        var json = JSON.parse(dec);
                        if(json != null){
                            var keys = ['name', 'description', 'data', 'created_at', 'updated_at'];
                            keys.forEach(function(key){
                                if (key in json){
                                    if(key == keys[keys.length - 1]){
                                        tampJson.push(json);
                                    }
                                }else{
                                    dialog({
                                        title: "Warning",
                                        description: "<b>Wrong format, </b> are you sure to continue?",
                                        yesButton: "yes",
                                        cancelButton: "No",
                                        yesCallback: function() {
                                            $(this).closest('.overlay').removeClass("active");
                                        },
                                        cancelCallback: function() {
                                            $(this).closest('.overlay').removeClass("active");
                                            return false;
                                        }
                                    });
                                }
                            });
                        }else{
                            alert('format parse gagal');
                        }
                    }
                });
                if(tampJson.length > 0){
                    saveByImport(tampJson, 0);
                }else{
                    alert('Oops file empty');
                }
            }, function (e) {
                alert('Oops import fail '+ e);
            });

控制台无法出错。我只是不能从fileinput ArrayBuffer。 此脚本可以在chrome扩展中工作,但在firefox sdk中不起作用。 所以请帮我解决这个问题。

1 个答案:

答案 0 :(得分:1)

我在我的插件中使用了旧版本的jszip。您可以使用我的存储库中的jszip并按照我的方式使用它。见这里 - https://github.com/Noitidart/Chrome-Store-Foxified/blob/master/resources/scripts/MainWorker.js#L195