重命名Mongoid中的字段不会更新类中的字段

时间:2018-11-27 22:39:46

标签: ruby-on-rails ruby mongodb mongoid

当我在Mongoid中重命名字段时,它会成功更新MongoDB中的字段,但不会更新ruby代码中的字段:

class Example
  include Mongoid::Document
  field :apple, type: String, as: :c_apple
end

Example.all
 => #<Mongoid::Criteria
  selector: {}
  options:  {}
  class:    Example
  embedded: false>

Example.all.rename("apple" => "d_apple")
  MOPED: 127.0.0.1:27017 UPDATE       database=core collection=examples selector={} update={"$rename"=>{"apple"=>"d_apple"}} flags=[:multi]
                         COMMAND      database=core command={:getlasterror=>1, :w=>1} runtime: 1.2460ms
 => {"connectionId"=>2, "updatedExisting"=>false, "n"=>0, "syncMillis"=>0, "writtenTo"=>nil, "err"=>nil, "ok"=>1.0} 

e = Example.new
 => #<Example _id: 5bfdbf103ed1492f9a000001, apple(c_apple): nil> 

 e.d_apple
NoMethodError: undefined method `d_apple' for #<Example _id: 5bfdbf103ed1492f9a000001, apple(c_apple): nil>

为什么MongoDB中的更改未反映在类定义中?

1 个答案:

答案 0 :(得分:0)

运行#rename时,您将与MongoDB进行交互。文档结构的更改存储在数据库中。此方法不与ruby源代码交互,您需要自己对其进行编辑。

顺便说一句。我想不起任何与存储在文件中的源代码进行交互的ruby / rails方法(除了rake任务和生成器中的方法)。