- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我有一个 Appointment 模型,可以由 Tutor 或 Student 初始化。一旦被一方初始化,另一方可以接受或拒绝。
我将我的模型设计为:约会和参与者。 Participant 有两个属性:participant_id 和 participant_type ("Tutor"/"Student")。我想声明 Appointment has_one Tutor, has_many Students 使用多态。
我的问题是:这是对多态性的有效使用吗?如果是,那么我应该如何声明这种关系和外键?如果不是,那是为什么?
谢谢。
最佳答案
当您拥有在不同实体(例如学生和导师)之间共享的共同属性(例如参与约会的能力)时,请使用多态性。我认为你的情况需要参与者的多态性,而不是约会。
问问自己:是否有不同类型的约会或不同类型的参与者?从您提供的信息来看,您似乎有一种约会,以及不同种类的参与者。
预约
class Appointment < ActiveRecord::Base
has_many :participants
has_one :tutor, :through => participants
has_many :students, :through => participants
end
学生
class Student < ActiveRecord::Base
has_many :appointments, :as => appointable
end
导师
class Tutor < ActiveRecord::Base
has_many :appointments, :as => :appointable
end
参与者
# This model joins your appointable entities (Tutors and Students)
# to Appointments
class Participant < ActiveRecord::Base
belongs_to :appointment
belongs_to :appointable, :polymorphic => true
end
就声明外键而言,Rails 会为您处理。
参与者迁移
class CreateParticipants < ActiveRecord::Migration
def up
create_table :partipants do |t|
t.references :appointment
t.references :appointable, :polymorphic => true
end
end
def down
drop_table :participants
end
end
为了更好地理解 Rails 如何将诸如 polymorphic
之类的关键字转换为 SQL 关联,请参阅指南:http://guides.rubyonrails.org/association_basics.html#polymorphic-associations
我认为状态机是一个有趣的选择——我没有任何 Ruby/Rails 状态机项目的经验,所以我不能就此给你建议。
这是关于如何设置日程安排的不完整描述。希望这足以让您入门。
将这些方法添加到约会:
class Appointment < ActiveRecord::Base
# Anybody may request a new appointment,
# specifying the initiator, and other participants
# they would like to attend.
def self.request requester, requested_participants=nil
a = self.new
a.status = "requested"
a.requester = requester
a.request_participation_of requested_participants
a.save!
end
# Anybody may call this method
# to request that the appointment be
# rescheduled, specifying the requester
def reschedule requester
self.status = "reschedule_requested"
requester.participation_in(self).update_attribute :status=> "requester_of_reschedule"
self.participants.where("appointable_id != ?", requester.id)
.update_all :status => "reschedule_requested"
self.save!
end
protected
def requester= requester
requester.participation_in(self).update_attribute :status => "requester"
end
def request_participation_of participants
if participants.is_a? Array
participants.each do |participant|
participant.request_participation_in self
end
else
request_participation_of [participants]
end
end
end
Scheduling 模块包含 Tutors 和 Students 的方法,因此您可以执行 student_3.request_appointment tutor_1
或 tutor_1.reschedule_appointment appointment_4
等操作。
lib/appointments/scheduling.rb
:
module Appointments::Scheduling
# When a Student or Tutor's participation
# in an Appointment has been requested,
# he/she indicates acceptance of the request
# with this method
def accept_participation_in appointment
self.participation_in(appointment).update_attribute :status => "accepted"
end
# Same as above, to decline the request
def decline_participation_in appointment
self.participation_in(appointment).update_attribute :status => "declined"
end
# This method finds the Student or Tutor's
# Participant object for a particular Appointment
def participation_in appointment
Participant.where(:appointment_id => appointment.id)
.find_by_appointable_id self.id
end
# A student or tutor can request a new
# Appointment with a participant or
# group of participants with this method
def request_appointment participants
Appointment.request self, participants
end
# This Student or Tutor's participation
# in an appointment can be requested with
# this method
def request_participation_in appointment
Participant.find_or_create_by_appointment_id_and_appointable_id(
:appointment_id => appointment.id,
:appointable_id => self.id
)
end
# This Student or Tutor's confirmation of
# a scheduled Appointment may be requested
# with this method
def request_reschedule_of appointment
new_status = "reschedule_requested"
if participant.id.eql? requester.id
new_status = "requester_of_reschedule"
end
self.participation_in(appointment).update_attribute :status => new_status
end
# A Student or Tutor may reschedule a
# particular Appointment with this method
def reschedule_appointment appointment
appointment.reschedule self
end
end
一旦这些模块就位,您就可以将它们包含在适当的实体中:
class Appointment < ActiveRecord::Base
include Appointments::Schedulable
end
class Student < ActiveRecord::Base
include Appointments::Scheduling
end
class Tutor < ActiveRecord::Base
include Appointments::Scheduling
end
我的示例还要求您向 Appointment 和 Participant 添加一个 status
字段。我最终会创建一个 AppointmentStatus 和一个 ParticipantStatus - 但是,首先我会让系统在没有它的情况下工作。
这里有一个有用的资源,可以帮助您创建用于模型的模块:http://henrik.nyh.se/2008/02/rails-model-extensions
关于ruby-on-rails - 这是对多态性的有效使用吗?如果是,我应该如何声明这种关系?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7867931/
我在 Mac OsX 10.11 上使用 Xcode 7.0.1 (7A1001) 我使用 carthage 0.9.2 通过以下购物车文件下载reactivecocoa github“Reactiv
我正在将一个对象从属性“模型”(我从 Laravel 中的 Blade 属性模型中获得)分配给数据属性模型。后来数据属性模型发生变化,因为它绑定(bind)到表单输入字段。但 Prop “模型”也发生
当我更新数组内对象的属性然后作为组件的 Prop 传递时,在 svelte 中触发 react 性的正确方法是什么? let items = [{ id: 1, name: 'first'
我是 DRY principle 的坚定拥护者: Every piece of knowledge must have a single, unambiguous, authoritative rep
我正在实现一个需要以下功能的线程: 及时响应终止请求 推送消息 在等待消息时保持对 SendMessage 请求的响应 我对消息泵的初始实现使用了 GetMessage,如下所示: while not
在我的应用程序中,用户获得了一份已到达她的文档列表,并且可以对每个文档执行操作。 文件是分批提交的,当这种情况发生时,列表会增加。这一切都很好,这是预期的行为,但最好有一个按钮“暂停实时数据”,它会忽
我有一个属性为 的数据对象 displaySubtotal 我可以通过以下方式更新该属性的值: data.displaySubtotal = numPad.valueAsAString(); 我的方法
我需要一个垂直 slider 输入。由于内置的 sliderInput 函数无法做到这一点,因此我选择自己实现。根据this thread可以 (I) 使用 CSS 旋转 sliderInput
我正在从自定义用户权限管理系统迁移到 Alanning:roles v2.0 .我有一个非常基本的结构: 基本用户 用户组,每个用户组都有特定的设置。我将它们存储在一个“组”集合中。 管理群组的用户的
Shiny 中的响应式(Reactive)表达式将更改传播到需要去的地方。我们可以使用 isolate 来抑制一些这种行为。 ,但是我们可以抑制基于我们自己的逻辑表达式传播的更改吗? 我给出的例子是一
是否有(或可能有) react 性 Parsec (或任何其他纯函数式解析器)在 Haskell 中? 简而言之,我想逐个字符地为解析器提供数据,并获得与我提供的足够多的结果一样多的结果。 或者更简单
HTML(JADE) p#result Lorem ipsum is javascript j s lo 1 2 4 this meteor thismeteor. meteor input.sear
我有一个被导入函数更改的对象。 https://svelte.dev/repl/e934087af1dc4a25a1ee52cf3fd3bbea?version=3.12.1 我想知道如何使我的更改反
我有一个YUV 420半平面格式的图像,其中字节以这种方式存储: [Y1 Y2 ... [U1 V1.... Yk Yk+1...] Uk' Uk'+1] 其中Y平面的大小是UV平面的两倍,并
如何使用 ReactiveCocoa 订阅从 NSMutableDictionary 添加和删除的对象?另外,我想在它发生变化时广播通知。我的猜测是可以使用 RACMulticastConnectio
我正在构建一个带有多个选项卡的应用程序,其中一些选项卡涉及过多的计算,而另一些选项卡的计算速度很快。一个允许用户在 react 性或手动更新之间进行选择的复选框,与“刷新”按钮结合使用,将是理想的选择
我知道您可以在获取集合时使用 reactive: false 关闭 react 性。如何在内容可编辑区域内的集合字段中实现相同的效果?示例: Template.documentPage.events(
我想在 z3 中表示一个哈希函数,比如 SHA(x)。在做了一些研究之后,似乎 z3 不能很好地支持注入(inject)性,所以我不能有像这样的约束(虽然我意识到这并不是严格意义上的碰撞,但作为一种启
我正在解决一个问题,我想在仪表板中将数据显示为图表(通过 perak:c3 )和表格(通过 aslagle:reactive-table )。我的问题是数据是从 MongoDB 中的集合中提取的,它的
我的 ViewModel 中有这个函数,它返回一个信号,但内部 block 不起作用,我尝试添加断点,但它没有中断。这是我的代码。 func executeLoginAPI() -> RACSigna
我是一名优秀的程序员,十分优秀!