我正在尝试上传/添加由我的某个类预先创建的新对象,但我不能这样做,因为Angular告诉我我不能使用自定义对象。
这是代码:
this.itemsCollection = this.afs.collection<Lesson>('lessons');
this.itemsCollection.add(this.lesson);
这是错误:
ERROR Error: Function CollectionReference.add() requires its first argument to be of type object, but it was: a custom Lesson object.