ประการแรกฉันมาถึงวิธีแก้ปัญหาarguments.callee
แต่มันแย่มาก
ฉันคาดว่ามันจะพังในโหมดเข้มงวดระดับโลก แต่ดูเหมือนว่ามันจะใช้งานได้
class Smth extends Function {
constructor (x) {
super('return arguments.callee.x');
this.x = x;
}
}
(new Smth(90))()
เป็นวิธีที่ไม่ดีเนื่องจากการใช้การarguments.callee
ส่งรหัสเป็นสตริงและบังคับให้ดำเนินการในโหมดที่ไม่เข้มงวด แต่กว่าความคิดที่จะลบล้างapply
ก็ปรากฏขึ้น
var global = (1,eval)("this");
class Smth extends Function {
constructor(x) {
super('return arguments.callee.apply(this, arguments)');
this.x = x;
}
apply(me, [y]) {
me = me !== global && me || this;
return me.x + y;
}
}
และการทดสอบแสดงให้เห็นว่าฉันสามารถเรียกใช้สิ่งนี้เป็นฟังก์ชันได้หลายวิธี:
var f = new Smth(100);
[
f instanceof Smth,
f(1),
f.call(f, 2),
f.apply(f, [3]),
f.call(null, 4),
f.apply(null, [5]),
Function.prototype.apply.call(f, f, [6]),
Function.prototype.apply.call(f, null, [7]),
f.bind(f)(8),
f.bind(null)(9),
(new Smth(200)).call(new Smth(300), 1),
(new Smth(200)).apply(new Smth(300), [2]),
isNaN(f.apply(window, [1])) === isNaN(f.call(window, 1)),
isNaN(f.apply(window, [1])) === isNaN(Function.prototype.apply.call(f, window, [1])),
] == "true,101,102,103,104,105,106,107,108,109,301,302,true,true"
เวอร์ชันด้วย
super('return arguments.callee.apply(arguments.callee, arguments)');
ในความเป็นจริงมีbind
ฟังก์ชัน:
(new Smth(200)).call(new Smth(300), 1) === 201
เวอร์ชันด้วย
super('return arguments.callee.apply(this===(1,eval)("this") ? null : this, arguments)');
...
me = me || this;
ทำให้call
และapply
ในwindow
ไม่สอดคล้องกัน:
isNaN(f.apply(window, [1])) === isNaN(f.call(window, 1)),
isNaN(f.apply(window, [1])) === isNaN(Function.prototype.apply.call(f, window, [1])),
ดังนั้นควรย้ายเช็คไปที่apply
:
super('return arguments.callee.apply(this, arguments)');
...
me = me !== global && me || this;