我正在尝试使用 ES6。特别是类和继承。在类Apple
中,它扩展Polygon
。我想扩展Polygon
's 方法sayName()
并将其转到 console.log。
当我通过traceur运行它时,我得到undefined
了console.log(foo);
class Polygon {
constructor(height, width) { //class constructor
this.name = 'Polygon';
this.height = height;
this.width = width;
}
sayName() { //class method
return 'Hi, I am a', this.name + '.';
}
}
class Apple extends Polygon {
constructor(length) {
super(length, length); //call the parent method with super
this.name = 'apple';
}
sayName() {
var foo = super();
console.log(foo);
}
}
let d = new Apple(5);
d.sayName();
示踪剂:
System.register("class", [], function() {
"use strict";
var __moduleName = "class";
function require(path) {
return $traceurRuntime.require("class", path);
}
var Polygon = function Polygon(height, width) {
this.name = 'Polygon';
this.height = height;
this.width = width;
};
($traceurRuntime.createClass)(Polygon, {sayName: function() {
return 'Hi, I am a', this.name + '.';
}}, {});
var Apple = function Apple(length) {
$traceurRuntime.superConstructor($Apple).call(this, length, length);
this.name = 'apple';
};
var $Apple = Apple;
($traceurRuntime.createClass)(Apple, {sayName: function() {
var foo = $traceurRuntime.superConstructor($Apple).call(this);
console.log(foo);
}}, {}, Polygon);
var d = new Apple(5);
d.sayName();
return {};
});
System.get("class" + '');
- 我怎样才能
sayName()
在Apple
课堂上表现出色并让console.log(foo)
表演变得有价值? - 我以为 traceur 会向我展示编译后的代码,但事实并非如此。例如,
$traceurRuntime.createClass()
并没有帮助我了解它是如何创建这些构造函数的。我是否错误地使用 traceur 来查看编译的代码?