gpt4 book ai didi

ember.js - 在 Ember.js 中,如何使用父模型的函数

转载 作者:行者123 更新时间:2023-12-02 00:57:04 25 4
gpt4 key购买 nike

我有两个模型:

Parent = Ember.Model.extend({
hello: function() {
console.log("parent says hello");
},
world: function() {
console.log("parent says world");
}
});
Child = Ember.Model.extend(Parent, {
hello: function() {
console.log("child says hello");
// how do I call Parent.hello here?
// how do I call Parent.world here?
}
});

我想从 Child.hello 函数中调用 Parent.hello 和 Parent.world 函数。

我该怎么做呢?是否有我可以使用的 super 方法,或者我只是使用绑定(bind)并在 Child.hello 函数中引用父模型类?

最佳答案

没什么特别的,只是:

how do I call Parent.hello here?

this._super()

how do I call Parent.world here?

this.world()

Working demo.

关于ember.js - 在 Ember.js 中,如何使用父模型的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33527072/

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