这是我的葡萄 API Ruby 代码,它将发布到它的 JSON 数据插入到单个表中:
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。