我正在使用 Ruby on Rails 创建一个论坛(我对此很陌生)并且设法让自己完全陷入困境。
**版本 Ruby on Rails 4.0 **
一个论坛软件可以有很多分类,在这些分类中你可以有多个论坛。
主页看起来与此类似:
第一类
- 论坛一
- 论坛二
第 2 类
- 论坛3
- 论坛4
- 论坛5
创建论坛时,您应该有一个下拉菜单,可让您选择要将其放置在哪个类别中。
起初,我创建了两个不同的脚手架——一个用于类别,一个用于论坛。我使用外键连接两者。我不知道这是否是最好的方法,但我根本无法让他们互动。我最终把我的代码搞砸了,我几乎没有什么可以展示的。
我尝试使用在 Rails4 中添加子类别以及类别和子类别模型轨道作为解决方案,但最终都导致错误。
这是我的一些代码。这并不多,但也许你可以告诉我从哪里开始。如果有更好的方法(不使用两个表),请告诉我。我很想听听不使用宝石的最佳方法
警告:我的代码一团糟。
移民
class AddForeignToForums < ActiveRecord::Migration
def change
add_column :forums, :category_id, :integer
end
end
论坛控制器(我知道我错过了一些可以让我连接到类别的东西,我只是不知道是什么)
类 ForumsController < ApplicationController before_action :set_forum,仅:[:show, :edit, :update, :destroy]
# GET function. view/forums/index.html.erb
def index
@forums = Forum.all
end
# GET /forums/1. view/forums/show.html.erb
def show
@forum = Forum.find(params[:id])
end
# GET /forums/new. view/forums/new.html.erb
# Be able to list all the Categories.
def new
@forum = Forum.new
@categories = Category.all
end
# GET /forums/1/edit
# Be able to list all the categories.
def edit
@forum = Forum.find(params[:id])
@categories = Category.all
end
# POST /forums
# Allows the creation of a new forum
# Lindsey note: how to save category_idea. Assign to category.
def create
@forum = Forum.new(forum_params)
respond_to do |format|
if @forum.save
@forum = Forum.new(:name => params[:forum][:name],
:category_id => params[:forum][:category_id])
format.html { redirect_to @forum, notice: 'Forum was successfully created.' }
format.json { render action: 'show', status: :created, location: @forum }
else
format.html { render action: 'new' }
format.json { render json: @forum.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /forums/1
# Allows the update of forums.
def update
respond_to do |format|
if @forum.update(forum_params)
format.html { redirect_to @forum, notice: 'Forum was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: 'edit' }
format.json { render json: @forum.errors, status: :unprocessable_entity }
end
end
end
# DELETE /forums/1
def destroy
@forum.destroy
respond_to do |format|
format.html { redirect_to forums_url }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_forum
@forum = Forum.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def forum_params
params.require(:forum).permit(:name, :description, :category_id)
end
end
论坛模式
class Forum < ActiveRecord::Base
belongs_to :category
end
类别模型
class Category < ActiveRecord::Base
has_many :forums, :dependent => :destroy,
end
分类索引.html.erb
<tbody>
<% @categories.each do |category| %>
<tr>
<td><%= link_to category.name, category %></td>
<td><%= link_to ' (Edit', edit_category_path(category) %></td>
<td><%= link_to '| Destroy)', category, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% category.forums.each do |forum| %>
<tr>
<td><li><%= link_to forum.name, forum %></li></td>
</tr>
<% end %>
<% end %>
</tbody>
论坛_form.html.erb
<%= form_for(@forum) do |f| %>
<div class="field">
<%= f.label :name %><br>
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :description %><br>
<%= f.text_area :description %>
</div>
<%= f.label :category_id %><br />
<%= f.select :category_id, Category.all.map{|c| [c.name, c.id]} %>
<div class="actions">
<%= f.submit %>
</div>