我已经为这个问题解决了1个小时,却没有弄清为什么它不起作用。
我不使用gem devise。 我有用户模型,发布模型,UsersController.rb,PostsController.rb和以下1个帮助程序
class PostsController < ApplicationController
before_action :set_post, only: [:show, :edit, :update, :destroy]
# GET /posts
# GET /posts.json
def index
@posts = Post.all
end
# GET /posts/1
# GET /posts/1.json
def show
end
# GET /posts/new
def new
@post = Post.new
end
# GET /posts/1/edit
def edit
end
# POST /posts
# POST /posts.json
def create
@post = current_user.posts.build(post_params)
respond_to do |format|
if @post.save
format.html { redirect_to @post, notice: 'Post was successfully created.' }
format.json { render :show, status: :created, location: @post }
else
format.html { render :new }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /posts/1
# PATCH/PUT /posts/1.json
def update
respond_to do |format|
if @post.update(post_params)
format.html { redirect_to @post, notice: 'Post was successfully updated.' }
format.json { render :show, status: :ok, location: @post }
else
format.html { render :edit }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end
# DELETE /posts/1
# DELETE /posts/1.json
def destroy
@post.destroy
respond_to do |format|
format.html { redirect_to posts_url, notice: 'Post was successfully destroyed.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_post
@post = Post.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def post_params
params.require(:post).permit(:caption, :user_id)
end
end
module ApplicationHelper
def current_user
session[:user_id] && User.find(session[:user_id])
end
end
current_user帮助器方法对所有视图都适用。
据我了解,PostsController继承自ApplicationController,因此它从ApplicationHelper获取所有帮助程序。我仍然不知道为什么这行不通。
感谢您的帮助。
答案 0 :(得分:2)
尝试将其添加到ApplicationController.rb
helper_method :current_user
答案 1 :(得分:0)
Rails 5中的呼叫助手方法:
# sample :
module UsersHelper
def full_name(user)
user.first_name + user.last_name
end
end
class UsersController < ApplicationController
def update
@user = User.find params[:id]
if @user.update_attributes(user_params)
notice = "#{helpers.full_name(@user) is successfully updated}"
redirect_to user_path(@user), notice: notice
else
render :edit
end
end
end
Rails 5之前:
# sample :
module UsersHelper
def full_name(user)
user.first_name + user.last_name
end
end
class UsersController < ApplicationController
include UsersHelper
def update
@user = User.find params[:id]
if @user.update_attributes(user_params)
redirect_to user_path(@user), notice: "#{full_name(@user) is successfully updated}"
else
render :edit
end
end
end