获取使用MongoDB $ pop弹出的项目

时间:2014-03-19 12:37:26

标签: javascript arrays node.js mongodb

目前我有这段代码:

while(abc.length < amount){
    collection.update( {username : from }, { $pop: { fieldc: 1 } } );
}

但问题是,我想知道当我执行$ pop时从fieldc中删除了哪些项目,我无法找到回复来执行此操作而我不想让用户获取#39; s fieldc当它开始时,然后在最后得到差异,因为我所做的事情不会以这种方式工作。
我该怎么做才能找出正在弹出的项目?

0 个答案:

没有答案