我想知道使用redux将数据添加到Firestore的正确方法是什么?
const firestore = getFirestore();
firestore
.collection('todos')
.add({
...todo,
createdAt: new Date(),
})
.then(() => {
dispatch({ type: 'CREATE_TODO', todo});
})
.catch((err) => {
dispatch({ type: 'CREATE_TODO_ERRO', err });
});
firebase
.firestore()
.collection('todos')
.add({ content: action.content, timeStamps: new Date() });
我尝试了两种,两种方法都起作用