在Backbone中设置视图属性

时间:2013-02-04 00:07:21

标签: backbone.js coffeescript

我正在尝试在创建实例后设置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不会被更改...

有什么想法吗?

感谢。

0 个答案:

没有答案