在 RTK 查询中按顺序执行多个突变的推荐方法是什么?
What is the recommended way to perform multiple mutations in sequence in RTK Query?
使用RTK Query进行序列多次突变推荐使用哪种方式?
const [
updateProfile,
] = useUpdateProfileMutation();
const [
updatePost,
] = useUpdatePostMutation();
const performMutipleMuations = async () => {
const data= await updateProfile(newData);
await updatePost(data);
};
最终使用 unwrap
成功了。
const performMutipleMuations = async () => {
const data= await updateProfile(newData).unwrap();
await updatePost(data).unwrap();
}
使用RTK Query进行序列多次突变推荐使用哪种方式?
const [
updateProfile,
] = useUpdateProfileMutation();
const [
updatePost,
] = useUpdatePostMutation();
const performMutipleMuations = async () => {
const data= await updateProfile(newData);
await updatePost(data);
};
最终使用 unwrap
成功了。
const performMutipleMuations = async () => {
const data= await updateProfile(newData).unwrap();
await updatePost(data).unwrap();
}