我正在关注YouTube上的教程(https://github.com/mackenziechild/raddit获取源代码),我遇到了使acts_as_votable gem工作的问题。我检查了我对repo的语法,看起来一切都是一样的。
我得到的错误信息是"未定义的局部变量或方法`acts_as_votable'"引用这些链接:
app / models / link.rb:2:<class:Link>'
app/models/link.rb:1:in
&#39;
app / controllers / links_controller.rb:9:在`index&#39;
这是链接模型:
class Link < ActiveRecord::Base
acts_as_votable
belongs_to :user
has_many :comments
end
这是控制器:
class LinksController < ApplicationController
before_action :set_link, only: [:show, :edit, :update, :destroy]
before_action :authenticate_user!, except: [:index, :show]
before_action :authorized_user, only: [:edit, :update, :destroy]
# GET /links
# GET /links.json
def index
@links = Link.all
end
# GET /links/1
# GET /links/1.json
def show
end
# GET /links/new
def new
@link = current_user.links.build
end
# GET /links/1/edit
def edit
end
# POST /links
# POST /links.json
def create
@link = current_user.links.build(link_params)
respond_to do |format|
if @link.save
format.html { redirect_to @link, notice: 'Link was successfully created.' }
format.json { render :show, status: :created, location: @link }
else
format.html { render :new }
format.json { render json: @link.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /links/1
# PATCH/PUT /links/1.json
def update
respond_to do |format|
if @link.update(link_params)
format.html { redirect_to @link, notice: 'Link was successfully updated.' }
format.json { render :show, status: :ok, location: @link }
else
format.html { render :edit }
format.json { render json: @link.errors, status: :unprocessable_entity }
end
end
end
# DELETE /links/1
# DELETE /links/1.json
def destroy
@link.destroy
respond_to do |format|
format.html { redirect_to links_url, notice: 'Link was successfully destroyed.' }
format.json { head :no_content }
end
end
def upvote
@link = Link.find(params[:id])
@link.upvote_by current_user
redirect_to :back
end
def downvote
@link = Link.find(params[:id])
@link.downvote_from current_user
redirect_to :back
end
private
# Use callbacks to share common setup or constraints between actions.
def set_link
@link = Link.find(params[:id])
end
def authorized_user
@link = current_user.links.find_by(id: params[:id])
redirect_to links_path, notice: "Not authorized to edit this link" if @link.nil?
end
# Never trust parameters from the scary internet, only allow the white list through.
def link_params
params.require(:link).permit(:title, :url)
end
end
除了仔细检查源代码之外,我还删除了数据库并重新创建它以查看我是否搞砸了与gem相关的迁移并弹回了服务器。我在这里缺少什么?