为什么tracedObj.squared(9)
返回未定义?
这可能与在它自己的对象上调用方法后调用的范围obj
错误有关。this
squared
代码
"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