- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图弄清楚 rails 是如何决定命名一个表的。我不得不反复试验才能弄清楚。
该表最终被命名为 menu_categories_items
.我想知道它是如何做到的。
楷模
# == Schema Information
#
# Table name: menu_categories
#
# id :integer not null, primary key
# name :string(255)
# order :integer
# image_url :string(255)
# parent_category_id :integer
# created_at :datetime
# updated_at :datetime
#
class MenuCategory < ActiveRecord::Base
belongs_to :parent_category, class_name: "MenuCategory"
has_and_belongs_to_many :menu_items
end
# == Schema Information
#
# Table name: menu_items
#
# id :integer not null, primary key
# name :string(255)
# description :text
# price :decimal(, )
# order :integer
# created_at :datetime
# updated_at :datetime
#
class MenuItem < ActiveRecord::Base
has_and_belongs_to_many :menu_categories
end
class CreateMenuCategoriesAndMenuItems < ActiveRecord::Migration
def change
create_table :menu_categories do |t|
t.string :name
t.integer :order
t.string :image_url
t.references :parent_category, index: true
t.timestamps
end
create_table :menu_items do |t|
t.string :name
t.text :description
t.decimal :price
t.integer :order
t.timestamps
end
create_table :menu_categories_items, id: false do |t|
t.belongs_to :menu_category
t.belongs_to :menu_item
end
end
end
最佳答案
HABTM has_and_belongs_to_many
关联表通常具有 [plural_first_alphabetical_model]_[plural_second_alphabetical_model]
的命名约定带有任何共享命名前缀
虽然这是 Rails 标准,但您可以使用 join_table
将名称更改为您自己的名称。争论:
#app/models/item.rb
class Item < ActiveRecord::Base
has_and_belongs_to_many :categories, join_table: "test"
end
#app/models/category.rb
class Category < ActiveRecord::Base
has_and_belongs_to_many :items, join_table: "test"
end
If you create a
has_and_belongs_to_many
association, you need to explicitly create the joining table. Unless the name of the join table is explicitly specified by using the:join_table
option, Active Record creates the name by using the lexical order of the class names. So a join between customer and order models will give the default join table name of "customers_orders" because "c" outranks "o" in lexical ordering.
has_many :through
表通常称为
[alphabetical_model_name_singular]_[alphabetical_model_name_plural]
has_many :through
的区别是因为有一个
model
在此关联的背后,您需要了解您的表将绑定(bind)到
model
本身;这意味着您实际上可以根据需要/需要调用连接表
menu_
每次您希望调用关联或数据时:
@item = MenuItem.find 1
@item.menu_categories
#app/models/item.rb
Class Item < ActiveRecord::Base
has_and_belongs_to_many :categories
end
#app/models/category.rb
Class Category < ActiveRecord::Base
has_and_belongs_to_many :items
end
categories_items
,允许您调用以下命令:
@item = Item.find 1
@item.categories
menu_x
和
menu_y
.您需要通过对象的“普通”名称来调用对象 - 一个描述它们是什么的简单名称,如果需要将它们与另一个模块相关联。
@item = Item.find 1
@item.switch_menus 2
@item.reload!
关于ruby-on-rails - has_and_belongs_to_many 关联表名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25560597/
最近几天,我们考虑使用 Solr 作为我们的首选搜索引擎。 我们需要的大多数功能都是开箱即用的,或者可以轻松配置。 然而,我们绝对需要的一项功能似乎在 Solr 中被很好地隐藏(或缺失)了。 我会试着
我是 Sequelize 的新手,并且一直在探索关联。我正在使用 mysql 5.6 并 Sequelize ^4.42.0。我正在尝试创建两个简单的表:PRJS 和 TASKS 并将一些数据插入这些
关联、聚合和组合之间有什么区别?请从实现的角度解释一下。 最佳答案 对于两个对象,Foo 和 Bar 可以定义关系 关联 - 我与一个对象有关系。 Foo 使用 Bar public class Fo
这两种 hasOne 语法有什么区别? class Project { ....... ............ static hasOne = Employee // static h
对于当前的项目,我想使用遗传算法 - 目前我查看了 jenetics 库。 如何强制某些基因相互依赖?我想将 CSS 映射到基因上,例如我有基因指示是否显示图像,以及如果它也是各自的高度和宽度。因此,
关联、聚合和组合之间有什么区别?请从实现的角度解释一下。 最佳答案 对于两个对象,Foo 和 Bar 可以定义关系 关联 - 我与一个对象有关系。 Foo 使用 Bar public class Fo
假设我有一个名为“学生”的表格,其中包含姓名、手机、电子邮件、首选类(class)、首选学校、性别、年龄、地址、资格、职称、家庭电话、工作电话等列 我想从 Students 表中选择数据并插入到 2
问题标题有点困惑。我有一级员工和一级项目。一名或多名员工正在从事一个或多个项目。在这个关联中,我只有一个从具有*多重性的员工类到具有*多重性的项目类的链接。现在有另一种实现。每个项目只有一名经理,属于
到目前为止,我有一个程序采用一组随机点、站点,并围绕这些点形成适当的 Voronoi 图,表示为角和边的图形。它还为我提供了 Delaunay 三角剖分作为另一个以所有站点为节点的图形(尽管我不知道这
实现IComMethodEvents时你得到三个事件。 OnMethodCall OnMethodException OnMethodReturn 我的目标是记录 COM+ 组件中每个方法的调用时间。
我正在处理这个问题。我正在创造数学问题,每一个都有回应。例如。 如果我的问题是关于“5x + 15 = 2 的结果?”,我将只等待一个答案(整数)。 如果我的问题是关于“给我这个形状的面积和许可”,我
我正在寻找一种数据结构来保存唯一元素的无序集合,它将支持以下操作 在集合中任意位置插入/删除元素 查询元素是否存在 访问一个随机元素 天真地,1 和 2 建议使用关联容器,例如unordered_se
是否可以在 LINQ 中使用类似 ContactAddress.Contact 的内容,而无需在 SQL Server 中在这两者之间创建外键关系(通过 Contact.Id ContactAddr
我一直在谷歌搜索,但不明白调用 javax.persistence.criteria.Subquery 和 Criteria API 的方法相关的结果是什么。 http://www.objectdb.
我正在关注 Chris McCord 的“Programming Phoenix”一书,在第 6 章中,在 User 之间创建了一个关系。和一个 Video . 尝试使用 mix phoenix.se
我在 XAML 中有一个 ItemsControl,我在其中为每个组显示一个扩展器,以便我可以展开/折叠该组。我想保持 IsExpanded 的状态属性(以及可能与组标题显示相关的其他设置)。通常你只
Oracle 11 中是否有内置方法来检查 varchar2 字段中值的相关性?例如,给定一个简单的表,如下所示: MEAL_NUM INGREDIENT --------------------
是否可以在没有 JPA 在数据库中创建外键的情况下设置多对一关联? 这些表归另一个系统所有,并以异步方式填充。因此我们不能在数据库中使用 FK。仍然,几乎总是,最终是一种关系。 @ManyToOne(
我一直在使用NHibernate,使用Fluent NHibernate进行映射。我解决了很多问题,并开始认为自己在nhibernate中经验丰富。 但是,此错误非常奇怪。 这是我的模型: p
我正在开发一个 Typescript Sequelize 项目,其中我的 /models/index.ts 文件具有以下“导入此目录中的所有模型”功能: var basename = path.bas
我是一名优秀的程序员,十分优秀!