将数据保存到嵌套数组mongodb mongoose

时间:2019-03-19 04:45:36

标签: node.js mongodb mongoose

我想将数据保存到嵌套数组

我的模型

 Tax :[{
              taxTitle :String,
              taxID :String,
              accountCode: String,

              taxType :
                        {   
                            type: String,
                            value : String, 
                            category : String,
                            table :[{
                                      title: String
                                   }]       
                        },

       }],

taxTitle其他保存内容还可以,我的代码是

{ $push : { Tax:{ taxTitle :taxTitle...... }}}

如何更新taxType

0 个答案:

没有答案