İlk uygulamamı mongoid ile yapıyorum ve yerleşik bir kaynağı silme konusunda sorun yaşıyorum. Ben yok çağrılması bir makaledemongoid ile gömülü belgeleri silme
ruby-1.9.2-p290 :043 > @article.comments
=> [#<Comment _id: 4eb0e991a27d201ded000038, _type: nil, body: "foo", score: nil>]
ruby-1.9.2-p290 :045 > @article.comments.first.destroy
=> true
ruby-1.9.2-p290 :046 > @article.comments
=> []
ruby-1.9.2-p290 :047 > @article.save
=> true
ruby-1.9.2-p290 :049 > @article.reload
=> #<Article _id: 4eb0e991a27d201ded000037, _type: nil, body: "foo", title: ....
ruby-1.9.2-p290 :050 > @article.comments
=> [#<Comment _id: 4eb0e991a27d201ded000038, _type: nil, body: "foo", score: nil>]
bir yorumu silmek (veya silme) olamaz neden
class Comment
include Mongoid::Document
field :body
embedded_in :article, :inverse_of => :comments
end
ben anlamıyorum ..
class Article
include Mongoid::Document
field :body
embeds_many :comments
vb: Ben bu modelleri var Gömülü belgenin bellekte sildiği anlaşılıyor, ancak db'den değil. Herhangi bir anlayış çok takdir edilecektir!
Merhaba. Buna bir cevap buldunuz mu? – Ben
yardımından gerçekten memnun olurum - hayır - bu bir süre önceydi ve projeyi takip etmedim – chrispanda