挿入/コピーしようとしていますか? a から b へのデータ。
例えば:
var styles = db.collection("style");
this.getStylesByA = function(a, callback) {
"use strict";
styles.findOne({'a': a}, function(err, style) {
"use strict";
if (err) return callback(err, null);
console.log(style);
callback(err, style);
});
}
これは与えるだろう
"_id":_id,
"style":"12345",
"a":"a",
"price":1.00,
"desc":"asldkfjea",
"img":"http://",
"imgs":["http:/","http:/"],
"category":"top",
"colors":[black, white]
このようなもの。
私がやりたいのは、スタイル コレクションからデータを見つけて、同じデータを別のコレクションである製品コレクションに挿入することです。
前もって感謝します!