当前位置 : 主页 > 网络编程 > 其它编程 >

微信小游戏转译TypeError:Cannotreadproperty'__proto__'ofundefined

来源:互联网 收集:自由互联 发布时间:2023-07-02
在chrome下没问题,移植到微信小程序就。。继承关系: upPencil extend pencils extend sprite123456789101112export class upPenc 在chrome下没问题,移植到微信小程序就。。继承关系: upPencil extend pencils ext
在chrome下没问题,移植到微信小程序就。。继承关系: upPencil extend pencils extend sprite123456789101112export class upPenc

在chrome下没问题,移植到微信小程序就。。继承关系: upPencil extend pencils extend sprite

123456789101112export class upPencil extends pencils{    constructor(passTop){        const image = dataStore.getInstance().res.get('upPencil');        const y = passTop - image.height;        super(image,y);        this.type = "up"    }    draw(){                                   super.draw()    }}

调用开始处:

1   pencil.draw(); //画出每个铅笔

pencils中出错位置

1            _get(pencils.prototype.__proto__ || Object.getPrototypeOf(pencils.prototype), "draw", this).call(this);

pencil中出错位置

1234567    _createClass(upPencil, [{        key: "draw",        value: function draw() {            //this.y = this.top -this.srcH;            _get(upPencil.prototype.__proto__ || Object.getPrototypeOf(upPencil.prototype), "draw", this).call(this);        }    }]);【感谢龙石为本站提供数据治理平台技术支撑 http://www.longshidata.com/pages/government.html】

上一篇:c#的访问修饰符
下一篇:没有了
网友评论