sql >> データベース >  >> NoSQL >> MongoDB

MongoDBはネストされた配列を更新します

    この方法で試してください

    conditions = {
        "_id": ObjectId"57ce1a55899bf934e59edd0d",
        "iterations.iterations_name": "Iteration2"
      };
    updates = {
       $push: {
         "iterations.$.tasks": "success"
       }
    };
    options = {
      upsert: true
    };
    Model.update(conditions, updates, options, callback);
    



    1. TypeError; Article.find()はSails.jsの関数ではありません

    2. Play-MongoDBおよびJava8で使用されるFramework2.4.x

    3. マングース独自の検証が機能していません。重複するエントリが保存されます

    4. SpringBootを使用したMongoDBの自動生成フィールド