0

こんにちは、私は現在、写真をアップロードするための Web アプリを作成しています。ユーザー、アルバム、写真があります。ユーザーのプロフィール情報を編集しようとすると、何が起こっているのかわかりません。UsersController#update に未定義のメソッド 'album' NoMethodError があることを教えてくれますが、 #update アクションでアルバムを呼び出すことすらありません。

def update
  respond_to do |format|
    if current_user.update_attributes(params[:user])
      format.html { redirect_to current_user, notice: 'User successfully updated.'}
      format.json { render json: current_user, status: :created, location: current_user }
    else
      format.html { render action: 'edit' }
      format.json { render json: current_user.errors, status: :unprocessable_entity }
    end
  end
end

エラーは、特に更新アクションの 2 行目と 3 行目にあります。エラーは次のとおりです。

app/controllers/users_controller.rb:45:in 'block in update'

app/controllers/users_controller.rb:44:inアップデート」

誰が一体何が起こっているのか知っていますか?

ユーザーの編集フォーム

<%= form_for(@user) do |f| %>

<div class="formhold">
<div class="field">
    <% if @user.profilepic? %>
    <%= image_tag @user.profilepic.url %>
    <% end %>

    <%= f.label :profilepic, "Profile Picture" %>
    <%= f.file_field :profilepic %>
</div>
<div class="field">
    <%= f.label :name %>
    <%= f.text_field :name %>
</div>
<div class="field">
    <%= f.label :email %>
    <%= f.text_field :email %>
</div>

<div>
    <%= f.submit 'Submit', :class => 'submitbutton' %>
</div>



<% if @user.errors.any? %>
    <div id="error_exp">
        <h2><%= pluralize(@user.errors.count, "error") %> occurred.</h2>

        <ul>
        <% @user.errors.full_messages.each do |msg| %>
            <li><%= msg %></li>
        <% end %>
        </ul>
    </div>

    </div>
<% end %>
<% end %>



<%= link_to "Back", user_path(@user) %>

ユーザーモデル

class User < ActiveRecord::Base

has_secure_password
attr_accessible :email, :name, :password, :password_confirmation, :profilepic
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
validates :album, :uniqueness => true

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

has_many :friendships, :dependent => :destroy
has_many :friends, :through => :friendships, :conditions => "status = 'accepted'"
has_many :requested_friends, :through => :friendships, :source => :friend, :conditions => "status = 'requested'", :order => :created_at
has_many :pending_friends, :through => :friendships, :source => :friend, :conditions => "status = 'pending'", :order => :created_at

has_attached_file :profilepic

before_save { |user| user.email = email.downcase }

def name_with_initial
  "#{name}"
end

private

  def create_remember_token
    self.remember_token = SecureRandom.urlsafe_base64
  end

終わり

4

1 に答える 1

1

コメントアウトしてみてください:

validates :album, :uniqueness => true

:albumはユーザーの属性/メソッドであり、失敗すると想定しています。ビジネスロジックに応じて、アルバムモデルでアルバムの独自の検証を処理する必要があります。user_idまたは他の属性に基づいてそれらを検証できます:scope => [:user_id]

于 2012-10-10T20:20:32.570 に答える