簡體   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