为什么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

最佳答案

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


不见了

return result;

10-06 12:28