Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收集了模型的记录。但是在 Fireloop 中没有可用于插入 Mongo db 的方法。
有什么可用的方法吗?
是的,PersistedModel.create([data], callback) As Arguments 可选数据参数。可以是单个模型实例或实例数组。传递对象 传递数组
希望这可以帮助。
是的,在您models创建端点时给出一个array而不是object
models
array
object
示例:在Products模型中
Products
this.productApi.create( [ {name: "Toy Car"}, {name: "Purse"}, {name: "Charger"} ] ).subscribe((res)=>console.log(res))