Mongo 오류:잘못된 작업, 대량 작업 없음 몽구스를 사용하여 몽고에 대량 삽입할 수 없습니다. var mongoose = require('mongoose'); var Schema = mongoose.Schema; // Define our results schema var webSchema = new Schema({"abc" : String},{ collection: 'web_v2' }); MyApi.prototype.Webs= mongoose.model('Webs', webSchema); resultData = [{"abc": "12121221"},{"abc": "44545"},{"abc": "545"}] MyApi.prototype.Webs.collection.insert(resultData, fu..