• #5 楼 @ditsing 非常感谢您的回复,测试稍晚,望谅解。

    DEBUG -  Room Load (0.3ms)  SELECT `rooms`.* FROM `rooms` WHERE `rooms`.`id` = 5 LIMIT 1
    false
    

    另,今天使用 current_account.rooms 测试发现又没有问题了。特别费解。

  • #6 楼 @meeasyhappy 这个可能不能作为正式环境的方案。另,我的代码流程很简单,不会有你说的这类操作的。

  • #5 楼 @ditsing 今晚测试下

  • #3 楼 @ditsing room 的 id。是通过 AR 管理的。

  • #1 楼 @cysh 5 条 active 的值为:1 1 1 1 0。active 字段为 tinyint 类型。

  • #7 楼 @chenge 已明确,当时不存在这条数据。如果如你所述,这个逻辑就是通的。

  • #5 楼 @lgn21st 非常感谢您的耐心回复讨论。

    1. 当然不是(应该 insert 之后做检查)。我的意思是 insert 后才应该能够查询出数据。如 test11211111112@aijinsong.com 在当时的数据库中是不存在的,但是为何有如下日志且出现 Account Exists。 ruby DEBUG - (0.1ms) BEGIN DEBUG - Account Exists (0.3ms) SELECT 1 AS one FROM `accounts` WHERE LOWER(`accounts`.`email`) = LOWER('test112@aijinsong.com') LIMIT 1 DEBUG - SQL (0.2ms) INSERT INTO `accounts` (`blogs_count`, `comments_count`, `created_at`, `crypted_password`, `email`, `logo`, `name`, `profile_image_url`, `profile_url`, `provider`, `role`, `uid`) VALUES (0, 0, '2015-05-04 21:52:14', '$2a$10$7FoH64NjksN39nKI7gm7zu/36dlbgxWYpdn5590JWxjhlJersyN6W', 'test112@aijinsong.com', NULL, 'aijinsong', NULL, NULL, NULL, 'admin', NULL) DEBUG - (0.5ms) COMMIT
    2. 同上日志描述 Account Exists,如果已经存在,为何下面还能插入成功。最后既然操作成功,说明肯定是我对 ActiveRecord 的处理过程还不是很理解,所以希望理解清楚。 这些日志的确对我去分析该问题产生影响,还请指教。
  • #3 楼 @lgn21st 这么理解下来,我觉得逻辑好像有些问题。 逻辑疑问一:是否应该先 insert 之后,才能够查询到数据呢? 逻辑疑问二:如果校验结果如日志所述,那么应该已经存在了邮箱,此时应该 rollback 的不是?

  • #1 楼 @lgn21st 非常感谢。已解决,详细描述如下。在这里抛出另外一个问题:

    DEBUG -  Account Exists (1.0ms)  SELECT 1 AS one FROM `accounts` WHERE LOWER(`accounts`.`email`) = LOWER('test11211111112@aijinsong.com') LIMIT 1
    

    如上是一条 DEBUG 信息。第一次学习使用 ruby 和 ActiveRecord,提示信息给到的反馈,让我误以为是数据已存在。所以希望能够弄清楚 ActiveRecord 给到这个 DEBUG 信息是何解?

    以下为根据提示调整后的日志和代码。

      DEBUG -    RELOAD (0.3626s) /Users/aijinsong/Documents/projects/opensource/robbin_site/app/controllers/room.rb
      DEBUG -   (0.9ms)  BEGIN
      DEBUG -  Account Exists (1.0ms)  SELECT 1 AS one FROM `accounts` WHERE LOWER(`accounts`.`email`) = LOWER('test11211111112@aijinsong.com') LIMIT 1
      DEBUG -   (0.5ms)  ROLLBACK
    {:role=>["是无效的"]}
    

    修改了代码,增加了对 role 的赋值就对了。

    @accountTemp = Hash.new
        @accountTemp['name'] = 'aijinsong'
        @accountTemp['email'] = 'test11211111112@aijinsong.com'
        @accountTemp['password'] = 'aiajsajs'
        @accountTemp['password_confirmation'] = 'aiajsajs'
        @accountTemp['role'] = 'admin'
        temp = Account.create(@accountTemp)
    
  • #4 楼 @ChanceDoor 后续我会找时间继续和您探讨这个问题。

  • #2 楼 @aijinsong 正确的写法如下。希望对大家有帮助。

    class Party < ActiveRecord::Base
    
      belongs_to :party , :polymorphic => true
      has_many :parties_telecom_numbers
    
    end
    
    class Person < ActiveRecord::Base
    
      has_one :party, :as => :party, :dependent => :destroy
      has_many :parties_telecom_numbers, :as => :party
      has_many :telecom_numbers, :through => :parties_telecom_numbers
    
    end
    
    class Customer < ActiveRecord::Base
    
      has_one :party, :as => :party
      has_many :parties_telecom_numbers, :as => :party
      has_many :telecom_numbers, :through => :parties_telecom_numbers
    
    end
    
    class TelecomNumber < ActiveRecord::Base
    end
    
    class PartiesTelecomNumber < ActiveRecord::Base
    
      belongs_to :party , :polymorphic => true
      belongs_to :telecom_number
    
    end
    
    
  • #1 楼 @ChanceDoor 非常感谢您的提示。稍后我会将可用方案给出。