0

この railscast をフォローしていて、すぐに行き詰まりました: http://asciicasts.com/episodes/244-gravatar index.html ファイルを編集しようとすると、サーバーから次の応答が返されます: undefined local variable or method `user' . 見た目からして、さほど難しくないように見えるはずです。あちこちで数行を交換する必要があるだけですが、苦労しています。

これは私がindex.html.erbに持っているものです:

     <h1>Listing posts</h1>

    <% @posts.each do |post| %>
      <tr>
        <td><%= post.name %></td>
        <td><%= post.title %></td>
        <td><%= post.content %></td>
        <td><%= link_to 'Show', post %></td>
        <td><%= link_to 'Edit', edit_post_path(post) %></td>
        <td><%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

これを次のように変更したいと思います。

  <% for user in @users %>  
      <tr>  
        <td><%= image_tag avatar_url(user) %></td>  
        <td><%= user.email %></td>  
        <td><%= link_to "Show", user %></td>  
        <td><%= link_to "Edit", edit_user_path(user) %></td>  
        <td><%= link_to "Destroy", user, :confirm => 'Are you ↵  
          sure?', :method => :delete %></td>  
      </tr>  
    <% end %>  

私のアプリケーションヘルパーコード:

module ApplicationHelper  
  def avatar_url(user)  
    gravatar_id = Digest::MD5::hexdigest(user.email).downcase  
    "http://gravatar.com/avatar/#{gravatar_id}.png"  
  end  
end  

私のポストコントローラーコード:

 class PostsController < ApplicationController
  # GET /posts
  # GET /posts.xml

  def index
    @posts = Post.all

    respond_to do |format|
      format.html # index.html.erb
      format.xml  { render :xml => @posts }
    end
  end

  # GET /posts/1
  # GET /posts/1.xml
  def show
    @post = Post.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.xml  { render :xml => @post }
    end
  end

  # GET /posts/new
  # GET /posts/new.xml
  def new
    @post = Post.new

    respond_to do |format|
      format.html # new.html.erb
      format.xml  { render :xml => @post }
    end
  end

  # GET /posts/1/edit
  def edit
    @post = Post.find(params[:id])
  end

  # POST /posts
  # POST /posts.xml
  def create
    @post = Post.new(params[:post])

    respond_to do |format|
      if @post.save
        format.html { redirect_to(@post, :notice => 'Post was successfully created.') }
        format.xml  { render :xml => @post, :status => :created, :location => @post }
      else
        format.html { render :action => "new" }
        format.xml  { render :xml => @post.errors, :status => :unprocessable_entity }
      end
    end
  end

  # PUT /posts/1
  # PUT /posts/1.xml
  def update
    @post = Post.find(params[:id])

    respond_to do |format|
      if @post.update_attributes(params[:post])
        format.html { redirect_to(@post, :notice => 'Post was successfully updated.') }
        format.xml  { head :ok }
      else
        format.html { render :action => "edit" }
        format.xml  { render :xml => @post.errors, :status => :unprocessable_entity }
      end
    end
  end

  # DELETE /posts/1
  # DELETE /posts/1.xml
  def destroy
    @post = Post.find(params[:id])
    @post.destroy

    respond_to do |format|
      format.html { redirect_to(posts_url) }
      format.xml  { head :ok }
    end
  end
end
4

3 に答える 3

0

Deviseを使用している私の場合、同じことを実行し、エラーが発生するためにスタックしました。だから私は交換しました。

module ApplicationHelper def avatar_url(user)gravatar_id
= Digest :: MD5 :: hexdigest(user.email).downcase
"http://gravatar.com/avatar/#{gravatar_id}.png"
end end

と;

module ApplicationHelper def avatar_url(user)gravatar_id
= Digest :: MD5 :: hexdigest(current_user.email).downcase
"http://gravatar.com/avatar/#{gravatar_id}.png"
end end

また、使用していることに気づきました。

このように見える「ユーザー」を大文字にしない限り、機能しません。

私はこれに非常に新鮮で新しいですが、それを行った後、すべてが私のアプリで機能します。お役に立てれば。

于 2013-01-08T20:01:10.537 に答える
0
$ rails g scaffold user email:string

アプリケーションのルート フォルダーにあるコンソールで実行し、app/views/users/index.html.erb で必要な変更を行います。

于 2011-08-25T02:24:54.477 に答える