hello soem body может помочь мне с одним примером в rails сделать пост-запрос на сохранение нескольких записей и данных sabe в разных таблицах в json
{
"post":
{
"title":"Titlea 2",
"body":"body of the post 2"
}
"comment":[
{
"title":"Title 2",
"body":"body of the post 2"
},
{
"title":"Title 2",
"body":"body of the post 2"
}
]
}
на самом деле у меня есть базовый код скаффолда, я очень новыйв рельсах
class CommentsController < ApplicationController
before_action :set_comment, only: [:show, :update, :destroy]
def index
@comments = Comment.all
render json: @comments
end
def show
render json: @comment
end
# POST /comments
def create
@comment = Comment.new(comment_params)
if @comment.save
render json: @comment, status: :created, location: @comment
else
render json: @comment.errors, status: :unprocessable_entity
end
end
private
def set_comment
@comment = Comment.find(params[:id])
end
# Only allow a trusted parameter "white list" through.
def comment_params
params.require(:comment).permit(:title, :comment)
end
end