2

我有以下情况:

var msp = function () { 
  this.val = 0.00;
  this.disc = 0;

};
Object.defineProperty(msp.prototype, "x", {
                        get: function () {return this.val - this.disc;},
                        toJSON: function () {return this.val - this.disc;},
                        enumerable: true,
                        configurable: true
                    });
var mp = new msp();
JSON.stringify(mp); // only returns {"val":0,"disc":0}

我希望我可以在 defineProperty 调用中以某种方式在属性“x”上设置一个 toJSON 方法,但这不起作用。

任何帮助,将不胜感激。

4

2 回答 2

2

这对我有用:

var obj = function() {
    this.val = 10.0;
    this.disc = 1.5;
    Object.defineProperties(this, {
        test: {
            get: function() { return this.val - this.disc; },
            enumerable: true
        }
    });    
};

var o = new obj;
o.test;
8.5
JSON.stringify(o);   // output: {"val":10,"disc":1.5,"test":8.5}

注意test不是原型定义,并且 enumerable必须设置为true

我在 IE9、FF 11 和 Chrome 18 中测试了上述工作版本——这三个版本都给出了预期的结果。

于 2012-04-13T14:58:39.007 回答
1

您需要将其应用于对象本身,而不是像这样的原型

var msp = function () { 
  this.val = 0.00;
  this.disc = 0;

};
msp.prototype.dif=function () {this.x = this.val - this.disc;return this;}

var mp = new msp();
JSON.stringify(mp.dif());

但是,如果您尝试序列化不可能的功能。

于 2012-04-13T00:54:33.727 回答