我正在使用 Rails 3.2.13、Ruby 2.0.0p-p247 和 Spree 2.0.3。
在rails控制台或我的实际应用程序中使用activerecord,如果我运行:Spree::Product.select(:permalink).first
我得到#<Spree::Product permalink: nil>
但是,如果我运行,Spree::Product.first.permalink
我会得到"test"
预期的永久链接。此外,Spree::Product.first
返回产品的整个 activerecord 关系。
我尝试运行Spree::Product.create(name: "test", price: "100")
,RAILS_ENV=development rails c
它按预期工作。如果我尝试RAILS_ENV=test rails c
在NoMethodError: undefined method '[]' for nil:NilClass
.
知道为什么这只发生在测试环境中吗?