0
我在嘗試更新照片的listing_id,但由於某種原因,它不會保存該ID。我傳遞的3點或更多圖片ID的數組,然後迭代在這裏每一個是代碼:對象不存儲的標識
def create
@listing.landlord = current_landlord
if @listing.save
params[:listing][:images].each do |image|
Photo.find_by_id(image).listing_id = @listing.id
@listing.save
end
render :show, :status => 200
else
render :status => 403, :json => {:errors => @listing.errors}
end
end
任何想法方式的照片是不節能的上市編號?