1

我在数据库中有一个文件如下。

{                                                              
"CorePrice" : 1,                                       
"_id" : 166,                                           
"partno" : 76,                                         
"parttype" : "qpnm",                                   
"shipping" : [{                                                                     
    "shippingMethod1" : "ground",                          
    "cost1" : "10"
        },                                                     
     {                      
          "shippingMethod2" : "air",                             
       "cost2" : "11"                                 
    },                                                     
    {                                                              
    "shippingMethod3" : "USPS",                            
    "cost3" : "3"                                  
    },                                                     
    {                                                               
    "shippingMethod4" : "USPS",                             
    "cost4" : 45                                 
    }]
} 

我正在尝试通过使用以下代码进行迭代来将 ShippingMethod4 重命名为 shippingMethod。

remap = function (x)     
{ 
    if (x.shipping) {
        db.foo.update ({ _id:x._id}, 
              { $set: {    
                  "shipping.shippingMethod","x.shipping.shippingMethod4" },     
               $unset:{ "shipping.shippingMethod4":1    
        }}); } }

但是它向我抛出了以下错误:

"Sun Oct 06 02:09:44.764 JavaScript execution failed: SyntaxError: Unexpected token ,                                                                             

不知道为什么。有人可以帮忙吗?

4

1 回答 1

0

我已经为你重写了函数。

rename=function(x) { 
    if (x.shipping) {
                   x.shipping[3]={                                                               
                  "shippingMethod" : "USPS",                             
                  "cost4" : 45                                 
                   }  
   }
   db.foo.update({_id:x._id},x)
}

这将使您需要的更新。当然,对于一般情况,您仍然需要添加一个循环来遍历运输数组以找到您想要的名称并保持索引以像我一样使用它,但我让您将其作为练习;-)。你从 shell 用 rename(x) 调用它。

希望这会有所帮助,莫雷诺。

于 2013-10-26T12:56:19.717 回答