Skip to content

Instantly share code, notes, and snippets.

//投稿
// @url /posts/:id
var posts = {
id: "", // 投稿のID (Mongo[ORMapper]の仕様に合わせる)
img: "http://example.com/iamges/foo.png", // 画像のURL
body: "", // 投稿文
tags: [ // Tagの情報
{ id: "1", name: "Ruby" },
{ id: "4", name: "JavaScript" },
{ id: "6", name: "Python" }