我的Backbone应用程序正在与构建在MongoDB之上的REST API进行通信,因此我的对象“自然”ids是真正的MongoID.当序列化为
JSON时,它们看起来像:
"_id":{"$id":"505099e998dee4db11000001"}
Backbone documentation提到您可以为您的Backbone模型的id属性(使用idAttribute)指定另一个名称,但是,由于MongoID的字符串表示是嵌套的,只需使用idAttribute:“_id”不会直接消耗JSON.
更新:
这是我正在做的服务器端:
$m = new Mongo(); $posts = $m->mydatabase->posts->find(); $out = array(); foreach ($posts as $post) { $out[] = $post; } echo json_encode($out);
我知道我可以像$post [‘id’] =(string)$post [‘_ id’];未设置($信息[ ‘_身份证’]);但正是我正在寻找避免!
这听起来像是
parse()
的一个很好的例子.
由于您的Mongo JSON最终发送:
"_id":{"$id":"505099e998dee4db11000001"}
为什么不使用骨干解析来正确命名空间传入的数据?
parse: function(response) { response.id = response._id['$id']; delete response._id; return response; }
或者这样的东西.同样地,由于Backbone将使用’id’将id作为JSON发送,所以您的服务器可能需要这样做,并以另一种方式“翻译”.
如果要使用不同的id attribute,_id,您只需用以下代码替换上述解析:
idAttribute: '_id',parse: function(response) { response._id = response._id['$id']; return response; }
无论对你最有利.