阅读BPMN文件

时间:2018-01-04 06:24:26

标签: javascript bpmn

window.onload = function () {

    var fileInput = document.getElementById('fileInput');


    fileInput.addEventListener('change', function (e) {
        var file = fileInput.files[0];
        var textType = /text.*/;

        if (file.type.match(textType)) {
            var reader = new FileReader();

            reader.onload = function (e) {
                var a = reader.result;
                //alert(a);
                importXML(a);
            }

            reader.readAsText(file);
        } else {
            alert('file not supported');
        }
    });
}

我正在使用上面的javascript代码来读取文件的内容,并且对于具有扩展名.txt的文件,它正常工作。我希望我的代码能够读取扩展名为.bpmn的文件内容。任何人都可以给我一些建议来实现这个功能

0 个答案:

没有答案