无法在局部变量上找出NameError

时间:2014-05-13 14:20:10

标签: ruby-on-rails ruby ruby-on-rails-4 view-helpers

我的application_helper.rb文件包含以下代码

module ApplicationHelper
def current_user
      @current_user ||= User.find(session[:user_id]) if session[:user_id]
    end
end

我有一个帖子控制器,它有一个方法

def create
@post = Post.new(params[:post])
@post.posted_by_uid=current_user.id
@post.posted_by=current_user.first_name+" "+current_user.last_name
@post.ups=0
@post.downs=0
@post.save
respond_to do |format|
    if @post.save
        format.html {redirect_to root_path}
        format.json {render :json => @post, :status => :created, :location => @post}
    else
        format.html {redirect_to root_path}
        format.json {render :json => @post.errors, :status => :unprocessable_entity }
    end
end
end

但是当我尝试通过以下视图提交表单时

<%= form_for(@post) do |f| %>
<div class="fields">
<%= f.label "Post" %><br />
<%= f.text_field :post %>
</div>
<div class="actions" id="refreshposts">
<%= f.submit("Post") %>
</div>
<% end %>

它返回错误未定义的局部变量或方法`current_user'

感谢任何帮助

1 个答案:

答案 0 :(得分:7)

ApplicationHelper类中包含ApplicationController模块,以便控制器中可以使用current_user方法。

class ApplicationController < ActionController::Base
  include ApplicationHelper ## Add this line
  ## ...
end