为什么MooTools JSON.encode()返回" $ caller":null?

时间:2012-07-27 03:49:59

标签: javascript mootools

我使用MooTools创建了一个新类。 我的班级看起来像这样

更新

var c=new Class({
    a:'',
    b:'',
    c:'',
    d:'',
initialize:function(ee){
this.e=ee;
},
buildJSON:function()
{
var cInstance=new c(this.e);
cInstance.a=this.a;
cInstance.b=this.b;
cInstance.c=this.c;
cInstance.d=this.d;

return (JSON.encode(cInstance));
}
});

var x=new c("action");
x.a="Hello a";
x.b="Hello b";
x.c="Hello c";
x.d="Hello d";

alert (x.buildJSON());​

这是一个非常简单的课程。现在,如果您尝试它,JSON上还有一个额外的键:

"$caller":null,
"caller":null

1 个答案:

答案 0 :(得分:4)

$callercaller都是MooTools Class添加的属性。

它们的存在是为了协助使用parent方法。在类实例上使用JSON.encode之前,应克隆该对象并清除不必要的属性。

您可以克隆this并从克隆中删除$callercaller

var c=new Class({
    a:'',
    b:'',
    c:'',
    d:'',

    initialize: function(ee) {
        this.e=ee;
    },

    buildJSON: function() {
        var data = Object.clone(this);
        delete data.$caller;
        delete data.caller;

        return (JSON.encode(data));
    }
});

var x=new c("action");
x.a="Hello a";
x.b="Hello b";
x.c="Hello c";
x.d="Hello d";

alert (x.buildJSON());​