簡體   English   中英

從多個主題獲取所有帖子

[英]Getting all the post from multiple subjects

我想顯示所有僅與用戶的所有主題相關的帖子。 我已經嘗試了很多次,但是總是出錯。 這太令人困惑了,因為它與我有很多關系。 這是模型。

class Post
  include Mongoid::Document
  include Mongoid::Timestamps

  field :content, type: String
  field :locked , type: Boolean
  field :unlocked_at , type: Date

  validates_presence_of :content

  belongs_to :subject
  belongs_to :user , inverse_of: :posted_by , class_name: "User"
  has_many :comments,dependent: :delete
  has_many :video_attachments , inverse_of: :posts , dependent: :delete
  accepts_nested_attributes_for :video_attachments, autosave: true
  accepts_nested_attributes_for :comments, autosave: true

end

require "mongoid/token"
class Subject
  include Mongoid::Document
  include Mongoid::Token

  field :title , type: String
  field :desc , type: String

  has_and_belongs_to_many :admins , inverse_of: :admin_of , class_name: "User"
  has_and_belongs_to_many :students , inverse_of: :student_of , class_name: "User"
  has_many :posts
  token length: 6

end

class User
  include Mongoid::Document
  authenticates_with_sorcery!
  mount_uploader :avatar , AvatarUploader

  #fields
  #field :email , type: String
  field :id_number , type: String
  field :crypted_password , type: String
  field :salt , type: String
  field :fname , type: String
  field :lname , type: String
  field :mname , type: String
  field :avatar
  field :gender , type: Boolean
  field :role , type: String , default: "Student"


  #relations
  has_and_belongs_to_many :admin_of , inverse_of: :admins , class_name: "Subject"
  has_and_belongs_to_many :student_of , inverse_of: :students , class_name: "Subject"
  has_one :user_detail 
  has_many :posts , inverse_of: :user , class_name: "Post"
  has_many :comments
  accepts_nested_attributes_for :user_detail , autosave: true


end
current_user = User.find("5492ca884d696c7bbe040000")
posts = current_user.student_of.collect(&:posts).flatten

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM