class SubJob
field :total_qty
end
class Part
belongs_to :sub_job
after_save :update_inventory, if: ready_for_invoice
after_save :update_total_qty
def update_inventory
在我的Rails應用程序中,我試圖爲一個模型構建API,但我無法執行少量方法。有沒有知道哪裏錯了。請提出建議。 模式 - 用戶 class User
include Mongoid::Document
include Mongoid::Timestamps
field :name, type: String
field :display_name, typ
解釋這個難題最簡單的方法是用一個例子: 說我有它們通過has_many關係兩個相關Mongoid型號: 博客文章 class Post
include Mongoid::Document
field :body, type: String
has_many :comments
end
,它的評論 class Comment
include Mongo
我是Rspec的新手。我寫了一個rspec,它檢查一個名爲「Lead controller」的控制器的創建動作。現在我想寫一個規格,它檢查名爲「status」的屬性設置爲「LEAD」。我想在創建引導之後從應用的發佈數據中檢查它。如何使用'expect'塊和'post:create'來檢查狀態? describe 'POST #create' do
it "should create a