我试图“伪造”一个画布,这个内容将这个假画布交给一个可能是任意的框架,以后处理所有的line-,curve-和moveTo。
为了管理这个,我尝试了这个实际有效的代码,但我想知道这个幸运的镜头有多少运气。
(function(){
function DebugCanvas(){
this._dom = document.createElement( 'canvas' );
addPropertiesToObject.call( this, this._dom );
this._fakeContext = null;
}
Object.defineProperties( DebugCanvas.prototype,
{
'constructor' : {
'value' : DebugCanvas,
'enumerable' : true
},
'getContext' : {
'value' : function( which ){
var ctx;
if( which == '2d' ){
if( this._fakeContext == null ){
this._fakeContext = new FakeContext( this._dom );
}
ctx = this._fakeContext;
} else {
ctx = this._dom.getContext( which );
}
return ctx;
},
'enumerable' : true
}
}
);
function FakeContext( debugCanvas ){
this._debugCanvas = debugCanvas;
this._realContext = debugCanvas._dom.getContext( '2d' );
addPropertiesToObject.call( this, this._realContext );
}
Object.defineProperties( FakeContext.prototype, {
'toString' : {
'value' : function(){
return '[Object FakeContext]';
},
'enumerable' : true
},
'canvas' : {
'get' : function(){
return this._debugCanvas;
},
'set' : function( c ){ return },
'enumerable' : true
}
});
function addPropertiesToObject( from ){
var description, obj;
for( var prop in from ){
obj = from;
do {
if( obj.hasOwnProperty( prop ) &&
!this.constructor.prototype.hasOwnProperty( prop ) ){
try{
description = Object.getOwnPropertyDescriptor( obj, prop );
Object.defineProperty( this.constructor.prototype, prop, description );
} catch( err ){
this[ prop ] = from[ prop ];
}
break;
}
} while( obj = Object.getPrototypeOf( obj ) );
}
};
})()
基本思想是将所有canvas',canvas.prototypes'(所有链向上),contexts'和context.prototypes'属性复制到假对象的原型,只要它们不存在于那里
答案 0 :(得分:2)
在javascript中,您可以使用与原始属性/方法相同的属性/方法自由地构造替换对象,并使用它来代替原始对象。方法调用或属性访问将以相同的方式相同,并且调用代码通常不会知道差异。这在javascript中有时是非常有用的事情。
这样的替换更复杂的部分是模拟所有方法和属性的实际行为,以便您传递的代码可以按照您的需要工作。但是,如果你能成功地做到这一点,它应该可以正常工作。没有运气 - 只要您对方法/属性的模拟是正确的,这就应该有效。