1

我将一个对象字面量传递给一个名为supportP(). 这个对象字面量有一个特殊的属性叫做_p,它表示它的成员是私有的。从对象文字中的 with 可以通过this._p. 但是,当我将对象文字传递到“外部”范围时,我不会复制_p. 它现在已因遗漏而被私有化。为了从公共成员方法访问 _p,我使用将它们绑定到原始对象,bind()因此它们仍然可以通过 _p 访问this

这行得通吗?还有其他需要考虑的事情吗?在我测试之前想要一些反馈。

以下是相关的片段。

/*$A.supportP
**
**
**
*/
$A.supportP = function (o, not_singleton) {
    var oo
        key;
    SupportList[o.Name] = {};
    if (not_singleton) {
        // ignore this section
    } else { // *look here - isFunc returns true if a function
        for (key in o) {
            if ((key !== '_p') && (isFunc(o[key])) {
                oo[key] = o[key].bind(o);
            } else if (key !== '_p') {
                oo[key] = o[key];
            } else {
                // private (_p) - anything to do here?
            }
        }
        return oo;
    }
};


/*$A.test
**
**
**
*/
var singleton_object = $A.supportP({
    _p: 'I am private',
    Name: 'test',
    publik_func: function () {
        // this will refer to this object so that it can access _p
        // this._p is accessible here due to binding
    }
}, false);
4

1 回答 1

1

这行得通吗?

是的,您将能够通过 访问“私人”财产this._p

还有其他需要考虑的事情吗?

您正在克隆对象。然而,它的方法无法访问它 - 它绑定到“旧”对象,其属性不会反映副本上的更改。我不确定这是设计使然还是偶然。


对于严格的隐私,您将需要使用带有局部变量的闭包。财产永远不能私有化。

var singleton_object = (function() {
    var _p = 'I am private'; // local variable
    return {
        Name: 'test',
        publik_func: function () {
            // this will refer to this object so that it can access the properties
            // _p is accessible here due to closure, but not to anything else
        }
    };
}()); // immediately-executed function expression

另一种解决方案,使用两个不同的对象(一个隐藏的),它们被传递到框架方法中:

function bindPrivates(private, obj) {
    for (var key in obj)
        if (typeof obj[key] == "function")
            obj[key] = obj[key].bind(obj, private);
    return obj;
}

var singleton_object = bindPrivates({
    p: 'I am private'
}, {
    Name: 'test',
    publik_func: function (_) {
        // this will refer to this object so that it can access "public" properties
        // _.p, a "private property" is accessible here due to binding the private 
        //  object to the first argument
    }
});
于 2013-01-23T23:31:11.677 回答