我想在Rails应用程序中通过PUT请求更新模型。最好的方法是什么?
基本上我有:
def method
...
@relation = Relation.find(34)
@relation.name = "new_name"
@relation.save
end
这给了我SQLite中的错误(“无法在事务中启动事务”)。
切换到put / post我应该猜测是否存在问题..什么是正确的方法呢?
答案 0 :(得分:2)
所以过了一段时间,我实际上找到了解决方案。以下是Resque worker的代码,它通过PUT更新Relation模型。使用这种方法,我不会遇到SQLite繁忙的异常错误。
class VideoCollector
def self.perform(rel_id)
@relation = Relation.find_by_id(rel_id)
@url = Rails.application.routes.url_helpers.relation_url(@relation)
@uri = URI(@url)
@body ={"collected" => "true"}.to_json
request = Net::HTTP::Put.new(@uri.path, initheader = {'Content-Type' =>'application/json'})
request.body = @body
response = Net::HTTP.new(@uri.host, @uri.port).start {|http| http.request(request) }
end
end
也许这对某人有用。