Slide 37
Slide 37 text
{
posts: [{
id: 1,
title: "Sample Blog Post",
body: "Hello world!",
comment_ids: [ 1 ],
tag_ids: [ 1, 2 ]
}],
comments: [
{ id: 1, body: "Test comment" }
],
tags: [
{ id: 1, name: 'Ponies' },
{ id: 2, name: 'Unicorns' }
]
}
GET /posts/1.json
ActiveModel::Serializers
ActiveModel::Serializers
Monday, July 15, 13