gpt4 book ai didi

Ember.js this.super() 的目的是什么

转载 作者:行者123 更新时间:2023-12-04 14:12:58 24 4
gpt4 key购买 nike

很多时候我看到了这个功能

init: function() {
return this._super();
},

此功能的目的是什么以及何时使用它们?
有人可以向我解释实际使用吗?

最佳答案

调用 this._super()init调用 init父类(super class)的功能。

documentation gives this example :

App.Person = Ember.Object.extend({
say: function(thing) {
var name = this.get('name');
alert(name + " says: " + thing);
}
});

App.Soldier = App.Person.extend({
say: function(thing) {
this._super(thing + ", sir!");
}
});

var yehuda = App.Soldier.create({
name: "Yehuda Katz"
});

yehuda.say("Yes"); // alerts "Yehuda Katz says: Yes, sir!"

关于Ember.js this.super() 的目的是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23642859/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com