fireloop

How to insert multiple records in loopback

試著忘記壹切 提交于 2019-12-11 08:31:11
问题 I have collection of records for a model. But there is no method available to insert into Mongo db in Fireloop. Is there any method available ? 回答1: Yes there is, in you models create endpoint give an array instead of object Example: in Products model this.productApi.create( [ {name: "Toy Car"}, {name: "Purse"}, {name: "Charger"} ] ).subscribe((res)=>console.log(res)) Hope this helps. 回答2: Yes, PersistedModel.create([data], callback) As Arguments Optional data argument. Can be either a single