我对语义网、VIE 和 JSON-LD 非常陌生。我正在使用 create.js 修改页面上的内容。保存数据后,我在服务器上得到以下对象。Create.js 建议修改backbone.sync,但我不知道从哪里开始。
array(
'@subject' => '</nodes/edit/2>',
'@type' => '<http://viejs.org/ns/Node>',
'<http://viejs.org/ns/meta_title>' => 'The Node Title',
'<http://viejs.org/ns/meta_description>' => 'The Node Description',
'<http://viejs.org/ns/content>' => 'Going places on Sunday afternoon.'
)
我需要这种格式的数据。
array(
'Node'=>array(
'id'=>2,
'meta_title'=>'The Node Title',
'meta_description'=>'The Node Description',
'content'=>'Going places on Sunday afternoon'
)
)
有谁知道翻译这种数据的常用方法?