我正在使用backbone.js,用coffeescript写它,但是得到这个错误,并且无法解决它!
代码片段:
module.exports = class CoreModel extends Backbone.Model
destroyed: false
# Helper to toggle the state of boolean value (using not)
toggle: (key) -> @swap key, invert
# Helper to change the value of an entry using a function.
swap: (key, f) -> @set key, f @get key
toJSON: -> if @destroyed then 'DESTROYED' else super
错误:
[stdin]:11:45: error: unexpected else
toJSON: -> if @destroyed then 'DESTROYED' else super
^^^^
不知道为什么这是一个意想不到的其他!
1条答案
按热度按时间i1icjdpr1#
如果您使用的是coffeescript 2,那么您需要使用带有
super()
的括号。这里的错误消息应该会更有帮助。你可以在文件上看到。
如果您发现需要使用旧行为(所有参数都转发到
super
调用),则可以使用以下代码: