このドキュメント (モデル) のグリッドを表示したい:
{
id: "53f7ba4b30d2317912fc8004",
title: "Hellow world",
on_slideshow: false,
country: {
name: "United state",
country_code: "US"
}
tags: [
{
name: "backbonejs"
object_id: "72691"
},
{
name: "backgrid"
object_id: "72692"
}
]
}
私のjsファイルで..
var grid = new Backgrid.Grid({
columns: [{
name: "title",
label: "Title",
cell: "string"
},
{
name: "country",
label: "Country",
cell: "string"
},
{
name: "on_slideshow",
label: "Slide",
cell: "boolean"
},
{
name: "tags",
label: "Tags",
cell: "string"
},
{
name: "pub_date",
label: "Publiched",
cell: "string"
}],
collection: articles
}).render();
タグは [object Object]、[object Object] として表示され、国はまったく表示されませんでした。
タグの名前と国のリストを正しく表示するにはどうすればよいですか?