MongoDb返回_id
形式的ID。我想确保前端(ember.js应用程序)总是收到id
。我可以在客户端上编写一个序列化程序,但我认为可能有一个更简单的解决方案,可以在数据库级别或快速服务器应用程序中实现。
我尝试使用虚拟属性,但这似乎不起作用。
ActionSchema = mongoose.Schema(
title: type: mongoose.Schema.Types.Mixed
reduction: type: Number
description: type: mongoose.Schema.Types.Mixed
category: type: String
)
ActionSchema.virtual('id').get(->
@_id
)