是否有多个验证存在

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否有多个验证存在相关的知识,希望对你有一定的参考价值。

  1. # migrations
  2.  
  3. class CreateClients < ActiveRecord::Migration
  4. def self.up
  5. create_table :clients do |t|
  6. t.string :name, :length => 255, :null => false
  7. t.timestamps
  8. end
  9. end
  10. end
  11.  
  12. class CreateEmails < ActiveRecord::Migration
  13. def self.up
  14. create_table :emails do |t|
  15. t.integer :client_id
  16. t.string :email, :length => 64, :null => false
  17. t.timestamps
  18. end
  19. end
  20. end
  21.  
  22. # model
  23.  
  24. class Email < ActiveRecord::Base
  25. belongs_to :client
  26. validates_presence_of :email
  27. validates_presence_of :client_id
  28. end
  29.  
  30. class Client < ActiveRecord::Base
  31. has_many :emails
  32. end
  33.  
  34. # ./script/console
  35. >> c = Client.new('name' => 'Client')
  36. >> e = Email.new('email' => '[email protected]')
  37. >> c.emails << e
  38. >> c.save!
  39. # ActiveRecord::RecordInvalid: Validation failed: Emails is invalid
  40. >> e.errors.full_messages
  41. => ["Client can't be blank"]
  42.  
  43. # ./script/console
  44. >> c = Client.new('name' => 'Client')
  45. >> e = Email.new('email' => '[email protected]')
  46. >> e.client = c
  47. >> c.save!
  48. => true

以上是关于是否有多个验证存在的主要内容,如果未能解决你的问题,请参考以下文章

“不存在”是不是有验证规则?

如何在循环中拆分和验证字符串是不是存在

是否有一个 R 函数可以测试多个指定对象的存在?

django怎么判断数据库的记录是不是存在

VB检查多个文件是不是存在

验证一个值是否已经存在数据表中