私は小さなフレームワーク (JS で) を開発していますが、審美的な理由と単純さのために、PHP "__invoke" のようなものを実装する方法があるかどうか疑問に思っていました。
例えば:
var myClass = function(config) {
this.config = config;
this.method = function(){};
this.execute = function() {
return this.method.apply(this, arguments);
}
}
var execCustom = new myClass({ wait: 100 });
execCustom.method = function() {
console.log("called method with "+arguments.length+" argument(s):");
for(var a in arguments) console.log(arguments[a]);
return true;
};
execCustom.execute("someval","other");
望ましい実行方法:
execCustom("someval","other");
何か案は?ありがとう。