我有一个这样的模型:
class ForgotPasswordForm
include ActiveModel::Model
include ActiveModel::Validations
attr_accessor :email
validates_presence_of :email
end
我想创建一个模块,我想测试使用该模块的模型是否具有某个属性。
然后我将该模块包含在上面的ForgotPasswordForm中。
我该怎么做?
答案 0 :(得分:0)
使用此:
ForgotPasswordForm.attribute_names