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

戻り値Model.create(arr).exec()がマングースで機能していません

    then funtionはpromiseを返しませんが、execは返します

    したがって、return Comp.remove({}).exec()を実行する必要があります

    Comp.find({}).exec()
    .then(function(docs){
        return Comp.remove({}).exec();
    })
    .then(function(result_of_remove){
        return Comp.create(arr).exec();
    })
    .then(function(result_of_create){
        ....
    })
    


    1. 複数の言語を使用したmongodbテキスト検索

    2. デフォルトのビューエンジンが定義されていないことをExpressが教えてくれるのはなぜですか?

    3. es7 async / awaitを使用して、ドキュメントがmongodbに存在するかどうかを確認します

    4. フラスコ:バックグラウンドワーカーのジョブを渡す(rq、redis)