我的茉莉花套件和jQuery新事件注册方法.on()的使用存在问题。

这是我的装置的简化版本:

<div id='rent_payment_schedule_container'>
  <select class="select optional" id="frequency_select" name="payment_schedule[frequency]">
    <option value="0">Monthly</option>
    <option value="1">Weekly</option>
    <option value="2">Bi-Weekly</option>
  </select>

  <div class="control-group select optional start-day-select" id="monthly_select"></div>

  <div class="control-group select optional start-day-select" id="weekly_select" style="display: none;"></div>
</div>


这是coffeescript(在使用该脚本的实际页面上效果很好):

$ ->
  $('#rent_payment_schedule_container').on 'change', '#frequency_select', (event) ->
    $('.start-day-select').hide()

    switch $(event.target).val()
      when '0'
        $('#monthly_select').show()
      when '1'
        $('#weekly_select').show()
      when '2'
        $('#weekly_select').show()


这是规格:

describe 'The UI components on the payment schedule creation page', ->
  beforeEach ->
    loadFixtures 'payment_schedule'

  describe 'The toggling of the monthly and weekly day select options', ->

    it 'shows the weekly select div and hides the monthly select div when the weekly option is selected from the #frequency_select select box', ->
      $('#frequency_select option[value=1]').attr('selected', 'selected')
      $('#frequency_select').change()
      expect($("#weekly_select")).toBeVisible()

    it 'shows the weekly select div and hides the monthly select div when the bi-weekly option is selected from the #frequency_select select box', ->
      $('#frequency_select option[value=2]').attr('selected', 'selected')
      $('#frequency_select').change()
      expect($("#weekly_select")).toBeVisible()

    it 'shows the monthly select div and hides the weekly select div when the monthly option is selected from the #frequency_select select box', ->
      $('#frequency_select option[value=1]').attr('selected', 'selected')
      $('#frequency_select').change()
      $('#frequency_select option[value=0]').attr('selected', 'selected')
      $('#frequency_select').change()
      expect($("#monthly_select")).toBeVisible()


而这每次都不幸地失败了。

但是,如果我不是使用$('#rent_payment_schedule_container')作为.on()的接收者,而是使用$(document),那么整个过程就很好了。

$ ->
  $(document).on 'change', '#frequency_select', (event) ->
    $('.start-day-select').hide()

    switch $(event.target).val()
      when '0'
        $('#monthly_select').show()
      when '1'
        $('#weekly_select').show()
      when '2'
        $('#weekly_select').show()


因此,我最好的猜测是,这与茉莉花加载夹具然后运行测试的顺序或速度有关,但是我不确定。有人能为我指出正确的方向,为什么会发生这种情况以及如何解决?

最佳答案

我的猜测是您将脚本与规范运行器一起加载。当DOM准备就绪时,脚本将执行。夹具仍在此时加载。结果,$('#rent_payment_schedule_container')将不会选择任何元素,您可能可以验证自己。

无论如何,您都可以通过将脚本包装在可以在测试中调用的函数中来解决此问题。

07-24 20:56