0

嗨,我正在尝试将表单用作我的albums控制器/模型的新/编辑视图的一部分。但是,当我尝试编辑专辑时,它给了我错误:

No route matches [PUT] "/users/22/albums"

我认为这可能与我的表单有关:url。当我提交它以创建相册时,我的表单工作正常,但当我尝试编辑它时出现该错误。

我尝试在我的表格中取出url: user_albums_path,但是当我尝试创建新专辑时它只会给我一个错误。

No route matches [POST] "/albums"

有什么方法可以使表单适用于两种操作?我觉得 :url 不能在这两种操作中正确共存。

_form.html.erb

<%= form_for (@album), url: user_albums_path, :html => { :id => "uploadform", :multipart => true } do |f| %>
<div class="formholder">
    <%= f.label :name %>
    <%= f.text_field :name %>


    <%= f.label :description %>
    <%= f.text_area :description %>

    <br>

    <%=f.submit %>
</div>
<% end %>

专辑控制器

class AlbumsController < ApplicationController

def index
  @user = User.find(params[:user_id])
  @albums = @user.albums.all

  respond_to do |format|
    format.html
    format.json { render json: @albums }
  end
end

def show
  @user = User.find(params[:user_id])
  @album = @user.albums.find(params[:id])
end

def update
  @user = User.find(params[:user_id])
  @album = @user.albums.find(params[:id])
  respond_to do |format|
    if @album.update_attributes(params[:album])
      format.html { redirect_to user_album_path(@user, @album), notice: 'Album successfully updated' }
    else
      format.html { render 'edit' }
    end
  end
end

def edit
  @user = User.find(params[:user_id])
  @album = @user.albums.find(params[:id])
end

def create
  @user = User.find(params[:user_id])
  @album = @user.albums.build(params[:album])
  respond_to do |format|
    if @user.save
      format.html { redirect_to user_album_path(@user, @album), notice: 'Album was successfully created.' }
      format.json { render json: @album, status: :created, location: @album}
    else
      format.html { render action: "new" }
      format.json { render json: @album.errors, status: :unprocessable_entity }
    end
  end 
end

def new
  @user = User.find(params[:user_id])
  @album = Album.new
end

def destroy
end

结尾

请帮忙!

更新:

解决它!靠我自己!表格只需要<%= form_for([@user, @album])...

4

1 回答 1

1

尝试

<%= form_for [@user, @album] %> 
# other arguments can be inserted before the closing brace

该语法正确地限定了资源路由

@album如果需要,请记住要有一个实例变量。您可以使用@user.album.build

于 2012-10-03T19:41:28.547 回答