我的form_for没有作为表单传递。我通常可以解决问题,但是这个我无法弄清楚为什么从@image
传递了2个参数。这是我的代码
错误
wrong number of arguments (2 for 1)
查看
<% form_for @image, :action => "edit" do |f| %>
<%= f.text_field :title %>
<%= f.submit "Update" %>
<% end %>
控制器
class Admin::ImagesController < ApplicationController
respond_to :html, :json
def index
@album = Album.find(params[:album_id])
@images = Image.all
end
def new
@album = Album.find(params[:album_id])
@image = @album.images.new(params[:image_id])
end
def create
@album = Album.find(params[:album_id])
@image = @album.images.new(params[:image])
if @image.save
flash[:notice] = "Successfully added image!"
redirect_to [:admin, @album, :images]
else
render :action => 'new'
end
end
def show
@album = Album.find(params[:album_id])
@image = @album.images(params[:id])
end
def edit
@album = Album.find(params[:album_id])
@image = @album.images(params[:id])
end
def update
@album = Album.find(params[:album_id])
@image = @album.images(params[:id])
if @image.update_attributes(params[:image])
flash[:notice] = "Successfully updated Image"
redirect_to @image
else
render :action => "edit"
end
end
def destroy
@album = Album.find(params[:album_id])
@image = Image.find(params[:id])
@image.destroy
redirect_to admin_album_images_path(@album)
end
end
路线
Admin::Application.routes.draw do
get "albums/index"
get "dashboard/index"
namespace :admin do
root :to => "dashboard#index"
resources :dashboard
resources :albums do
resources :images
end
get "admin/album"
end
get "logout" => "sessions#destroy", :as => "logout"
get "login" => "sessions#new", :as => "login"
get "signup" => "users#new", :as => "signup"
# resources :users
resources :basic
root :to => "basic#index"
模型
class Image < ActiveRecord::Base
attr_accessible :title, :description, :image_name, :image_id, :album_id
belongs_to :album
accepts_nested_attributes_for :album
end
答案 0 :(得分:1)
您错过了find
关键字:
def edit
@album = Album.find(params[:album_id])
@image = @album.images.find(params[:id])
end
控制器中的update
和show
操作同样如此。
使用:
@image = @album.images(params[:id])
您的@images
将包含相册中的所有图片。
答案 1 :(得分:1)
尝试将表单代码更改为以下内容:
<%= form_for @image, :url => { :action => "edit" } do |f| %>
<%= f.text_field :title %>
<%= f.submit "Update" %>
<% end %>