3
class ViewModel
  constructor: ->
    $.ajax({url: '#.json', type: 'GET', dataType: 'json'})
    .done @buildModel

  buildModel: (data) =>
    @model = ko.mapping.fromJS(data)
    @model.update = =>
      delete @model.update
      jsonForm = ko.mapping.toJSON(@model)
      $.ajax({url: '#.json', data: jsonForm, type: 'PUT', contentType:"application/json; charset=utf-8", dataType: 'json'})
      .done @buildModel

    ko.applyBindings(@model)

###################################################################

class FormViewModel extends ViewModel
  buildModel: =>
    super()

如果我这样称呼:

$(document).bind 'pageinit', =>
  @form = new ViewModel

一切安好。如果我尝试继承

$(document).bind 'pageinit', =>
  @form = new FormViewModel

收到错误:

Uncaught Error: Unable to parse bindings.
Message: ReferenceError: update is not defined;
Bindings value: click: update 

为什么 ko.applyBindings 对这种继承不满意?

4

1 回答 1

2

使用super代替super()inFormViewModelbuildModel功能。

  • super()意思是:调用同名的父方法,不带任何参数。
  • super意思是:用我收到的任何参数调用同名的父方法。

所以子类总是buildModel用 data = 调用父函数undefined

另请注意,我认为您不需要调用ko.applyBindingsbuildModel函数。对于整个视图模型,调用应该只发生一次。

于 2012-08-09T05:05:07.650 回答