3

我正在尝试删除重复的 JavaScript 代码。我有一页有很多<input type="file">. 每个加载一个图像并执行一些不同的处理。问题是我有以下代码的许多重复项:

inputFile1.onchange = function (e) {
        var file = e.target.files[0];
        if (typeof file == 'undefined' || file == null) {
            return;
        }
        var imageType = /image.*/;
        if (!file.type.match(imageType)) {
            window.alert('Bad file type!');
            return;
        }
        var reader = new FileReader();
        reader.onloadend = function (e) {
            var imageLoader = new Image();
            imageLoader.onload = function () {
                // process image
            };
            imageLoader.src = e.target.result;
        };
        reader.readAsDataURL(file);
    };

inputFile2.onchange = ... (repeats all but process image)
inputFile3.onchange = ... (repeats all but process image)

只有process image注释处的代码有所不同。如何删除周围的重复代码?

我知道 JavaScript 函数是对象。如何定义函数对象并为每个事件处理程序创建一个不同的实例,为process image每个对象传递不同的函数?

4

3 回答 3

3

您可以使用将单个回调作为参数的闭包为此类函数创建生成器:

function getChangeHandler(loadCallback) {
    return function (e) {
        var file = e.target.files[0];
        if (typeof file == 'undefined' || file == null) {
            return;
        }
        var imageType = /image.*/;
        if (!file.type.match(imageType)) {
            window.alert('Bad file type!');
            return;
        }
        var reader = new FileReader();
        reader.onloadend = function (e) {
            var imageLoader = new Image();
            imageLoader.onload = loadCallback; // <= uses the closure argument
            imageLoader.src = e.target.result;
        };
        reader.readAsDataURL(file);
    };
}
inputFile1.onchange = getChangeHandler(function() { /* custom process image */ });
inputFile2.onchange = getChangeHandler(function() { /* custom process image */ });
inputFile3.onchange = getChangeHandler(function() { /* custom process image */ });

另一种最终更好的方法是change对所有输入仅使用一个 -event 处理程序,该处理程序通过输入name或输入动态选择自定义图像处理器id

var imageProcessors = {
    "box1": function() { … },
    "anotherbox": function() { … },
    …
};
function changeHandler(e) {
    var input = this; // === e.target
    …
    reader.onloadend = function (e) {
        …
        imageLoader.onload = imageProcessors[input.id];
    };
}
// and bind this one function on all inputs (jQuery-style):
$("#box1, #anotherbox, …").click(changeHandler);
于 2012-08-05T21:15:14.580 回答
1

您可以编写一个返回函数的函数:

function processFile(callback) { //callback is the unique file processing routine
    return function(e) {
        var file = e.target.files[0];
        if (typeof file == 'undefined' || file == null) {
            return;
        }
        var imageType = /image.*/;
        if (!file.type.match(imageType)) {
            window.alert('Bad file type!');
            return;
        }
        var reader = new FileReader();
        reader.onloadend = function (e) {
            var imageLoader = new Image();
            imageLoader.onload = callback; //Put it here!
            imageLoader.src = e.target.result;
        };
        reader.readAsDataURL(file);
    };
}

然后像这样调用:

inputFile1.onchange = processFile(function() {
      //file processing for number 1
});
inputFile2.onchange = processFile(function() {
      //file processing for number 2
});
inputFile3.onchange = processFile(function() {
      //file processing for number 3
});
于 2012-08-05T21:17:59.677 回答
1

这是一个 EMCA5 解决方案,只是为了把它混在一起。它根据元素绑定动态事件回调。

我假设每个字段都有一个 ID(input1等),但对代码进行了一些修改(即通过其他方式识别触发器元素),这不是必需的。

Array.prototype.slice.call(document.querySelectorAll('input[type=file]')).forEach(function(element) {

    /* prepare code specific to the element */
    var input_specific_code = (function() {
        switch (element.id) {
            case 'input1': return function() { /* #input1 code here */ };
            case 'input2': return function() { /* #input2 code here */ };
            case 'input3': return function() { /* #input3 code here */ };
        }
    })();

    element.addEventListener('change', (function(input_specific_code) { return function(evt) {
        var id_of_trigger_input = element.id;

        /* common code here */

        /* element-specific code */
        input_specific_code();

        /* continuation of common code */

    }; })(input_specific_code), false);
});
于 2012-08-05T21:26:52.867 回答