This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//投稿 | |
// @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" } |