当我保存模型时,我想从服务器获取 updated_at 值。
目前我做:
#Save My model
@model.save()
@listenToOnce @model, "sync", () =>
#my ruby on rails server returns the asset with the new updated time
#get the updated time from the server
@model.fetch()
@listenToOnce @model, "sync", () =>
#now my model has the new updated time here.
服务器端的代码:
if anAsset.save!()
respond_with anAsset
它有效,但我知道我不应该两次访问服务器。为什么 updated_at 时间不与主干 model.save() 调用同步?有没有一种方法可以让我只需访问服务器一次即可获得它?
谢谢!