1
我想要一個通用的REST,它返回給定模式的所有記錄。不能從Mongoose文檔搜索修改對象
/* Read all entries for a given document type, TODO: limit this to a sensible amount of records, say 500 */
app.get('/data/all/:id' , verifySession , function(req, res)
{
exposed[req.params.id].find({} , function(err,docs)
{
if(docs && req.params.id == "Account")
docs.forEach(function(o){ console.log(o); delete o.salt; delete o.hash; console.log(o); });
res.json(err || docs);
});
});
而對於賬戶,我不希望返回hash
和salt
,但如果它是隻讀Ø行爲。第二個console.log(o)仍然有salt
和hash
。
幫助?
你,先生,搖滾! – tomdemuyt