0

为什么tracedObj.squared(9)返回未定义?

这可能与在它自己的对象上调用方法后调用的范围obj错误有关。thissquared

代码

"use strict";
var Proxy = require('harmony-proxy');

function traceMethodCalls(obj) {
   let handler = {
       get(target, propKey, receiver) {
            const origMethod = target[propKey];
            return function(...args) {
                let result = origMethod.apply(this, args);
                console.log(propKey + JSON.stringify(args) + ' -> ' + JSON.stringify(result));
            };
       }
   };
   return new Proxy(obj, handler);
}

let obj = {

     multiply(x, y) {
        return x * y;
     },
     squared(x) {
        return this.multiply(x, x);
     }
};

let tracedObj = traceMethodCalls(obj);
tracedObj.multiply(2,7);

tracedObj.squared(9);
obj.squared(9);

输出

multiply[2,7] -> 14
multiply[9,9] -> 81
squared[9] -> undefined
undefined

我正在使用节点 v4.4.3(使用这些是否为时过早?)

运行代码

我必须像这样运行命令:

node --harmony-proxies --harmony ./AOPTest.js

4

1 回答 1

2
return function(...args) {
    let result = origMethod.apply(this, args);
    console.log(propKey + JSON.stringify(args) + ' -> ' + JSON.stringify(result));
};

不见了

return result;
于 2016-06-15T18:34:47.917 回答