gpt4 book ai didi

ruby-on-rails - 在 Ruby on Rails 中显示类别文章和标签

转载 作者:太空宇宙 更新时间:2023-11-03 16:46:32 24 4
gpt4 key购买 nike

我想显示一个类别链接以列出该类别的所有文章。我在这个项目中使用了 Mongodb/Mongoid,但我不确定我是否以一种好的方式来做这件事。

文章模型

class Article
include Mongoid::Document
include Mongoid::Timestamps

field :title, type: String
field :content, type: String

belongs_to :user
#kategorie
belongs_to :article_category

文章 Controller

  class ArticlesController < ApplicationController
def article
@article = Article.order_by(created_at: 'desc').page params[:page]
end

def view_article
@article = Article.find(params[:id])
end
end

文章分类模型

class ArticleCategory
include Mongoid::Document
include Mongoid::Timestamps


field :name, type: String

has_many :articles


end

路线

  get 'article', to: 'articles#article'
get 'article/:id', to: 'articles#view_article', as: 'view_article'

我想做类似的东西。有一个 Article,下面是一个类别链接。我单击此链接,然后看到该类别中的文章列表。我应该制作一个 ArticleCategory Controller 吗? 类别中的路由呢?

最佳答案

既然你有一个 ArticleCategory 模型,那么是的,有一个 ArticleCategoryController 是有意义的。对于路线,我会让你的 routes.rb 文件看起来像这样:

resources :article_categories do
resources :articles, shallow: true
end

那样的话,路由是嵌套的(因为文章属于 article_categories),但是你可以直接访问文章而不必知道它的父类别。要阅读有关路由(尤其是嵌套)的更多信息,look at this .

关于ruby-on-rails - 在 Ruby on Rails 中显示类别文章和标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31724723/

24 4 0