1. ホーム
  2. javascript

[解決済み] Mutable変数がクロージャからアクセス可能です。どうすればよいですか?

2023-06-26 03:37:57

質問

TwitterのTypeaheadを使用しています。Intellijからこの警告に遭遇しています。これは、各リンクの "window.location.href" が、私のアイテムのリストの最後のアイテムになることを引き起こしています。

どのように私のコードを修正すればよいのでしょうか。

以下は私のコードです。

AutoSuggest.prototype.config = function () {
    var me = this;
    var comp, options;
    var gotoUrl = "/{0}/{1}";
    var imgurl = '<img src="/icon/{0}.gif"/>';
    var target;

    for (var i = 0; i < me.targets.length; i++) {
        target = me.targets[i];
        if ($("#" + target.inputId).length != 0) {
            options = {
                source: function (query, process) { // where to get the data
                    process(me.results);
                },

                // set max results to display
                items: 10,

                matcher: function (item) { // how to make sure the result select is correct/matching
                    // we check the query against the ticker then the company name
                    comp = me.map[item];
                    var symbol = comp.s.toLowerCase();
                    return (this.query.trim().toLowerCase() == symbol.substring(0, 1) ||
                        comp.c.toLowerCase().indexOf(this.query.trim().toLowerCase()) != -1);
                },

                highlighter: function (item) { // how to show the data
                    comp = me.map[item];
                    if (typeof comp === 'undefined') {
                        return "<span>No Match Found.</span>";
                    }

                    if (comp.t == 0) {
                        imgurl = comp.v;
                    } else if (comp.t == -1) {
                        imgurl = me.format(imgurl, "empty");
                    } else {
                        imgurl = me.format(imgurl, comp.t);
                    }

                    return "\n<span id='compVenue'>" + imgurl + "</span>" +
                        "\n<span id='compSymbol'><b>" + comp.s + "</b></span>" +
                        "\n<span id='compName'>" + comp.c + "</span>";
                },

                sorter: function (items) { // sort our results
                    if (items.length == 0) {
                        items.push(Object());
                    }

                    return items;
                },
// the problem starts here when i start using target inside the functions
                updater: function (item) { // what to do when item is selected
                    comp = me.map[item];
                    if (typeof comp === 'undefined') {
                        return this.query;
                    }

                    window.location.href = me.format(gotoUrl, comp.s, target.destination);

                    return item;
                }
            };

            $("#" + target.inputId).typeahead(options);

            // lastly, set up the functions for the buttons
            $("#" + target.buttonId).click(function () {
                window.location.href = me.format(gotoUrl, $("#" + target.inputId).val(), target.destination);
            });
        }
    }
};

cdhowieさんのご協力のもと、さらにコードを追加しました。 アップデータを更新し、click()のhrefも更新する予定です。

updater: (function (inner_target) { // what to do when item is selected
    return function (item) {
        comp = me.map[item];
        if (typeof comp === 'undefined') {
            return this.query;
        }

        window.location.href = me.format(gotoUrl, comp.s, inner_target.destination);
        return item;
}}(target))};

どのように解決するのですか?

ここで2つの関数をネストし、(変数そのものではなく)変数の値をキャプチャする新しいクロージャを作成する必要があります。 クロージャが作成された時点で . これは、即座に呼び出される外側の関数への引数を用いて行うことができます。 この式を置き換えてください。

function (item) { // what to do when item is selected
    comp = me.map[item];
    if (typeof comp === 'undefined') {
        return this.query;
    }

    window.location.href = me.format(gotoUrl, comp.s, target.destination);

    return item;
}

これを使って

(function (inner_target) {
    return function (item) { // what to do when item is selected
        comp = me.map[item];
        if (typeof comp === 'undefined') {
            return this.query;
        }

        window.location.href = me.format(gotoUrl, comp.s, inner_target.destination);

        return item;
    }
}(target))

を渡すことに注意してください。 target を外側の関数に渡すと、それが引数として inner_target の値を効果的に取り込みます。 target の値を効果的に取り込んでいる。 外側関数は内側関数を返し、その内側関数は inner_target の代わりに target であり inner_target は変更されません。

(ただし inner_targettarget で大丈夫です。 target が使われ、それが関数のパラメータになります。 しかし、このように狭い範囲に同じ名前の変数が2つあると非常に混乱するので、この例では何が起こっているのかがわかるように別の名前にしています)。