0
我有一個需求,其中我需要從一個coffeescript類方法返回一個小部件實例。從函數返回jquery-ui小部件
class Chart
constructor: (@chartData) ->
getChartType: ->
@chartData.type
getChartTitle: ->
@chartData.title
getChart: (context,ClickCallback) ->
#Need to create a chart widget instance and return
從調用函數我只想做這樣的事情
Chart c = new Chart(data)
object = c.getChart(@,@._onSeriesClick)
@.element.object()
我做了正確的方法是什麼?是否有可能從一個函數返回一個小部件,或者是否需要傳遞該元素並初始化我的coffeescript類中的小部件?