2

我正在尝试制作一个应用程序来制作属于许多用户的相册,并且用户可以拥有多个相册。但是,每当我尝试创建相册时,我的 @user.album.count 似乎都没有改变。

专辑/new.html.erb

<%= form_for (@album), url: user_albums_path, :html => { :id => "uploadform", :multipart => true } do |f| %>
<div>
    <%= 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
      @albums = Album.all
      @album = Album.find(params[:id])
      @photo = Photo.new
    end

    def update
    end

    def edit
    end

    def create
      @user = User.find(params[:user_id])
      @album = @user.albums.build(params[:album])
      respond_to do |format|
        if @album.save
          format.html { redirect_to user_path(@user), 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

end

楷模

#album model
class Album < ActiveRecord::Base
  attr_accessible :avatar, :name, :description
  has_many :user_albums
  has_many :users, :through => :user_albums
  has_many :photos
end


#user model
class User < ActiveRecord::Base

  has_secure_password
  attr_accessible :email, :name, :password, :password_confirmation
  validates_presence_of :password, :on => :create

  validates_format_of :name, :with => /[A-Za-z]+/, :on => :create
  validates_format_of :email, :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i, :on => :create
  validates_length_of :password, :minimum => 5, :on => :create

  has_many :user_albums
  has_many :albums, :through => :user_albums
  accepts_nested_attributes_for :albums

end

  #photo model (not up to there yet)
  class Photo < ActiveRecord::Base
    belongs_to :album
  end

配置/路由

Pholder::Application.routes.draw do
resources :users do
  resources :albums 
end

resources :albums do
  resources :photos
end

root :to => "users#index"

这是我的控制台

在 2012-10-01 17:41:59 -0400 为 127.0.0.1 开始获取“/assets/application.js?body=1” 服务资产 /application.js - 304 未修改(0ms)[2012-10-01 17:41:59] WARN 无法确定响应正文的内容长度。设置响应的内容长度或设置 Response#chunked = true

Started POST "/users/13/albums" for 127.0.0.1 at 2012-10-01 17:42:11 -0400 Processing by AlbumsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ttqQnEt1KFuwvYRU6MuOLgc5UprSE/zMzGMuzzZiZiE=", "album"=>{"name"=>"fdsafds", "description"=>"fdafdsfafdsfadsfsdsa"}, "commit"=>"Create Album", "user_id"=>"13"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "13"]] (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "albums" ("created_at", "description", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 01 Oct 2012 21:42:11 UTC +00:00], ["description", "fdafdsfafdsfadsfsdsa"], ["name", "fdsafds"], ["updated_at", Mon, 01 Oct 2012 21:42:11 UTC +00:00]] (5.6ms) commit transaction Redirected to http://localhost:3000/users/13 Completed 302 Found in 9ms (ActiveRecord: 6.0ms)

4

1 回答 1

2

Ok I found the problem. As you are creating the album through the user, with the build method

@album = @user.albums.build(params[:album])

then it's the user you have to save,

@user.save

So your new create method is

def create
  @user = User.find(params[:user_id])
  @album = @user.albums.build(params[:album])
  respond_to do |format|
    if @user.save
      print @album.errors
      format.html { redirect_to user_path(@user), 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
于 2012-10-01T23:32:42.020 回答