问题
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 model instance or an array of instances. Pass object Pass Array
Hope this helps.
来源:https://stackoverflow.com/questions/45860853/how-to-insert-multiple-records-in-loopback