我的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'
感谢任何帮助
答案 0 :(得分:7)
在ApplicationHelper
类中包含ApplicationController
模块,以便控制器中可以使用current_user
方法。
class ApplicationController < ActionController::Base
include ApplicationHelper ## Add this line
## ...
end