ruby-on-rails – FactoryGirl瞬态变量的未定义方法

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – FactoryGirl瞬态变量的未定义方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用FactoryGirl 4.4版.我正在尝试创建after(:create)回调,但是我在评估器变量上失败.
FactoryGirl.define do
  factory :organization do

    name 'example'

    factory :organization_with_links do

      transient do
        links_count 5
      end

      after(:create) do |organization,evaluator|
        create_list(:link,evaluator.links_count,organization: organization)
      end
    end
  end
end
@H_404_4@不幸的是我得到了

NoMethodError: undefined method `links_count' for  FactoryGirl::SyntaxRunner:0x007fcefb1ff780>
@H_404_4@根据officall工厂女孩指导我正在做的一切正常:https://github.com/thoughtbot/factory_girl/blob/master/GETTING_STARTED.md#associations

@H_404_4@任何建议如何使瞬态变量工作?

解决方法

所以解决办法是改变
transient do
   links_count 5
end
@H_404_4@至

ignore do
  links_count 5
end
@H_404_4@原因:在MasterGirl v.5.0上准备了主文件.暂时会在5.0版本上发布.

@H_404_4@更多阅读:http://github.com/thoughtbot/factory_girl/issues/658

原文链接:https://www.f2er.com/ruby/272774.html

猜你在找的Ruby相关文章