鉴于我在咖啡脚本中有以下继承。
我收到一个错误,因为 myCat 似乎未定义“哺乳动物”。
我在其他一些帖子中读到,我实际上必须将默认值设为一个函数来继承默认值。但是我如何用咖啡脚本做到这一点?
class Animal extends Backbone.Model
defaults:
mammal: true
class Cat extends Animal
defaults:
furColor: "gray"
myCat = new Cat
alert(myCat.get('mammal'))