在处理Rails 4动作邮件预览和工厂女孩时,我遇到了一个非常烦人的问题.这是我的一些代码的示例:
class TransactionMailerPreview < ActionMailer::Preview def purchase_receipt account = FactoryGirl.build_stubbed(:account) user = account.owner transaction = FactoryGirl.build_stubbed(:transaction,account: account,user: user) TransactionMailer.purchase_receipt(transaction) end end
这可能是任何动作邮件预览.让我说我得到了一些错误(每次都发生),并且有一个错误.我修复了错误并刷新了页面.每次发生这种情况我都得到:
“Rails中的ArgumentError :: MailersController#preview
用户的副本已从模块树中删除但仍处于活动状态!“
然后我唯一的出路是重启我的服务器.
我在这里错过了什么吗?有关导致这种情况的原因以及如何避免这种情况的任何线索?因为这个原因,过去一周我已经重启了我的服务器100次.
编辑:在我编辑代码并刷新预览的任何时候,它实际上可能会发生?
解决方法
虽然这不是一个答案(但也许是一个线索),我也遇到了这个问题.
您的工厂是否会导致任何记录实际持续存在?
我最终在可能的地方使用Factory.build,并使用私有方法和OpenStructs删除其他所有内容,以确保在每次重新加载时都创建了所有对象,并且没有任何内容可以继续重新加载.
我想知道FactoryGirl.build_stubbed使用什么来诱骗系统认为对象被持久化导致系统尝试重新加载它们(在它们消失之后).
这是一个对我有用的片段:
class SiteMailerPreview < ActionMailer::Preview def add_comment_to_page page = FactoryGirl.build :page,id: 30,site: cool_site user = FactoryGirl.build :user comment = FactoryGirl.build :comment,commentable: page,user: user SiteMailer.comment_added(comment) end private # this works across reloads where `Factory.build :site` would throw the error: # A copy of Site has been removed from the module tree but is still active! def cool_site site = FactoryGirl.build :site,name: 'Super cool site' def site.users user = OpenStruct.new(email: 'recipient@example.com') def user.settings(sym) OpenStruct.new(comments: true) end [user] end site end end
我很想知道是否有其他人有更好的解决方案.