我正在尝试使用 Trailblazer 和使用 Dry-Validation 的验证设置创建一个注册表单。我遇到了一个似乎与虚拟字段有关的障碍。我的合同是这样的。
module User::Contract
class Register < Reform::Form
model :user
property :first_name
property :last_name
property :password, virtual: true
property :password_confirmation, virtual: true
property :email
property :phone
property :bio
validation do
option :form
params do
required(:first_name).filled(:string)
required(:last_name).filled(:string)
required(:email).filled(:string)
required(:phone).filled(:string)
end
rule(:email) do
unless /\A[\w+\-.]+@[a-z\d\-]+(\.[a-z\d\-]+)*\.[a-z]+\z/i.match?(value)
key.failure('has invalid format')
end
end
rule(:password) do
key.failure('does not match') if value != form.password_confirmation
key.failure('too short') if value.length < 7
end
end
end
end
当我在终端中运行它时,我得到了这个:
contract = User::Contract::Register.new(User.new)
contract.valid?
Dry::Validation::InvalidKeysError (.rule specifies keys that are not defined by the schema: [:password])
问题
看起来我遇到的问题是因为它是一个虚拟字段并且因为使用了 Dry-Validation。我尝试评论内部代码,但仍然有问题。如何验证虚拟字段?
任何建议高度赞赏。