0
這裏是一個插入張貼到它JSON數據到一個表我的葡萄API Ruby代碼:使用grape API將數據插入到PostgreSQL的多個表中?
class Posts < Grape::API
version 'v1', :using => :path
format :json
resource 'posts' do
get "/" do
Post.all
end
get "/:id" do
Post.find(params['id'])
end
post "/create" do
Post.create(params['post'])
end
end
end
我如何將數據插入到使用葡萄API多個表?我正在使用PostgreSQL。
如何在沒有葡萄的情況下插入數據? –