ruby-on-rails – 具有关联的FactoryGirl attributes_for

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 具有关联的FactoryGirl attributes_for前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有以下工厂:
factory :car do
    name 'Some car'
    engine_value 1.6
    color '#ff0000'
    car_type
    engine_type
    transmission
    drive_type
    material
end

如你所见,有很多相关的对象.但是代码

attributes_for(:car)

生成:name =>“Some car”,:engine_value => 1.6,:color =>“#ff0000”}哈希.我需要获得具有所有属性的哈希.我该怎么做?谢谢.

解决方法

我遇到了同样的问题而且我使用了类似的东西
build(:car).attributes

不确定这是否是最好的方法,但它对我有用

希望这可以帮助

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

猜你在找的Ruby相关文章