繁体   English   中英

SQLite3 :: SQLException:没有这样的列

[英]SQLite3::SQLException: no such column

我正在尝试构建一个应用程序,使人们可以指定在此之前需要阅读哪些帖子,在这里我试图向他们展示。

  <%= @post.before.each do |before| %>
  <li><%= before.title %></li>
  <% end %>

这使我出现此错误:

SQLite3::SQLException: no such column: connections.post_id: SELECT "posts".* FROM "posts" INNER JOIN "connections" ON "posts"."id" = "connections"."after_id" WHERE "connections"."post_id" = ?

在连接中不应该有一个post_id列,在其中应该有一个before_id列。

我的模型是:

post.rb:

class Post < ApplicationRecord
    has_many :connections
    has_many :before, through: :connections, source: :after, foreign_key: "before_id"
    has_many :after, through: :connections, source: :before, foreign_key: "after_id"
end

connection.rb

class Connection < ApplicationRecord
    belongs_to :before, class_name: "Post", foreign_key: "before_id"
    belongs_to :after, class_name: "Post", foreign_key: "after_id"
end

帖子的控制器代码-通过脚手架自动生成:

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 = Post.new(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(:title, :text)
    end
end

has_many :connections Post模型中的has_many :connections告诉Rails您在connections表上有一个post_id 如果不是这种情况,我建议删除该关联或为该关联定义一个foreign_key

我将重新编码您的模型,如下所示:

class Post < ApplicationRecord
  has_many :before, class_name: 'Connection', foreign_key: "before_id"
  has_many :after, class_name: 'Connection',  foreign_key: "after_id"
end

注意:您将source: :beforesource: :after设置为与它们各自的关联名称和foreign_key名称相反。 我怀疑这不是故意的。 但是,如果是有意的,则可能需要在两个关联之间交换before_id (即,将before_id放在after关联上,反之亦然)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM