[]请问laya中js如何继承自己写的类

目前我这样,会报错,然后还有他如何重载父类方法呢,或者在引用父类a方法的基础上再添加内容呢
QQ截图20180104093843.png
已邀请:

gls_laybox

赞同来自:

t2.super(this);也是报错的,说没有构造方法

gls_laybox

赞同来自:

/*
* 父类t1
*/
var t1 = (function () {
function t1(b) {
this.b = b;
}
//父类方法a
t1.prototype.a = function(){
console.log(this.b.x+""+this.b.y);
}
return t1;
}());
 
=========================

/*
* t2继承父类t1
*/
var t2 = (function () {
function t2() {
t2.super();
}
t2.prototype.a = function(){
console.log('2222');
}
return t2;
}());
 

要回复问题请先

商务合作
商务合作