我刚刚开始测试我与兴农和茉莉花主干应用。 我有一个观点,即看起来像(CoffeeScript的):
initialize: ->
@collection.on 'reset', @render, this
render: ->
if @collection.fetched
# do stuff
else
@$el.append "<h3>Loading...</h3>"
@collection.fetch()
this
我想与未提取收集来测试这一点,但我不知道如何捏造我的代码中调用Ajax(显然可以很容易地在规范中进行)。 我意识到,我可以只通过在预取的集合,但我很好奇 - 这可能与兴农覆盖取函数返回一个假的反应?
感谢您的任何帮助。