0

我正在关注 Backbone Railscasts 和可排序列表 Railscast,但我很难将它们放在一起。

骨干模板:

<ul id="faqs" data-update-url="/api/faqs/sort">
</ul>

骨干视图:

render: ->
  $(@el).html(@template())
  @collection.each(@appendFaqs)

  $("#faqs").sortable
    axis: 'y'
    update: ->
      $.post($(this).data('update-url'), $(this).sortable('serialize'))

导轨控制器:

class FaqsController < ApplicationController

  def sort
   params[:faq].each_with_index do |id, index|
      Faq.update_all({position: index+1}, {id: id})
    end
    render nothing: true
  end

输出:

Started POST "/api/faqs/sort" for 127.0.0.1 at 2012-06-03 01:17:20 +0200
Processing by FaqsController#sort as */*
Completed 500 Internal Server Error in 1ms

NoMethodError (undefined method `each_with_index' for nil:NilClass):
  app/controllers/faqs_controller.rb:28:in `sort'

我知道我的参数是零。但我不明白为什么在我克隆的 railscast 代码项目中它正在工作。

我看到我应该覆盖toJSON方法(主干),我应该这样走吗?

老实说,我已经失控了。

使用的 Railscast:

4

1 回答 1

0

您需要在<li>元素上设置一个 id:

<li id="faq_1">...</li>
<li id="faq_2">...</li>
<li id="faq_3">...</li>
<li id="faq_4">...</li>

您应该阅读本文以更好地理解serialize 方法

于 2012-06-03T19:58:13.907 回答