我正在尝试在创建实例后设置View的属性。这就是我所拥有的:
class myView extends Backbone.View
className: 'myClass'
initialize: ->
@height_attr = 0
set_height: (h) ->
console.log "Inside of set_height with a height of #{h}"
@height_attr = h
创建实例后,我调用set_height并获取控制台日志消息,但@height_attr不会被更改...
有什么想法吗?
感谢。