【发布时间】:2019-11-30 08:17:21
【问题描述】:
我已经解决了这个问题 1 小时,但不知道为什么它不起作用。
我不使用 gem 设计。 我有用户模型、帖子模型、UsersController.rb、PostsController.rb 和 1 个帮助器,如下所示
- PostsController.rb:
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
- ApplicationHelper.rb
module ApplicationHelper
def current_user
session[:user_id] && User.find(session[:user_id])
end
end
current_user 辅助方法适用于所有视图。
据我了解,PostsController 继承自 ApplicationController,因此它从 ApplicationHelper 中获取所有帮助程序。我仍然不明白为什么这不起作用。
感谢您的帮助。
【问题讨论】:
-
我认为
ApplicationHelper已被弃用 - 请参阅 apidock.com/rails/ApplicationHelper。我以前没有亲自使用过控制器助手,但我发现这个链接有文档api.rubyonrails.org/classes/ActionController/Helpers.html 和你必须调用的方法apidock.com/rails/AbstractController/Helpers/ClassMethods/… -
这可能会奏效。我会试试的
标签: ruby-on-rails ruby controller helper