如何在Alloy Controller继承中使用super()

时间:2016-10-27 03:15:32

标签: appcelerator-titanium titanium-alloy appcelerator-alloy

如何在孩子身上调用anchestor函数,比如在Java中使用关键字 super

parent.js

exports.test = function(){
  Ti.API.info('Parent Function');
}

child.js

exports.baseController = 'parent';

exports.test = function() {
  // super.test(); <-- should print "Parent Function"
  Ti.API.info('Child Overriden Function');
}

Appcelerator合金继承:http://docs.appcelerator.com/platform/latest/#!/guide/Inheritance

1 个答案:

答案 0 :(得分:0)

使用它。而不是超级。

this.test();