0

您好我正在尝试通过单击事件远程更新数据库中的元素。当点击事件被触发时,我收到以下错误,但我相信我使用了正确的方法

Started PUT "/availabilities/131/edit" for 124.168.74.144 at 2013-02-13 08:02:40 +0100

ActionController::RoutingError (No route matches [PUT] "/availabilities/131/edit"):

haml 点击事件

.six.columns#named_players


 %h5 Named Players
  %table.twelve
    %thead
      %tr
        %th Change Status
        %th Attending
    %tbody
      - @availabilities.each do |a|
        %tr
          %td= full_name(a.user)
          %td
            %ul.button-group.two-up.even
              %li= button_to 'Accept', edit_availability_path(a), :remote => true, :method => :put, :class => 'button tiny success', :disable_with => 'Add'
              %li= link_to 'Decline', '#', :remote => true, :method => :put, :class => 'button tiny alert'

控制器

def update
    @availability = Availability.find(params[:id])

    respond_to do |format|
      if @availability.update_attributes(params[:availability])
        format.html { redirect_to @availability, :notice => 'Availability was successfully updated.' }
        format.js
      else
        format.html { render :action => "edit" }
        format.js
      end
    end
  end
4

1 回答 1

0

它接缝你正在点击[PUT] "/availabilities/131/edit"而不是[PUT] "/availabilities/131/update"

于 2013-02-13T07:42:21.117 回答