我正在尝试链接2个api调用,第一个是创建新服务的POST,第二个是使用正确的用户/管理员调用UPDATE的服务。
但是,它从来没有达到api.updateUserRights
export const addService = (service, user, rights) => (dispatch) => {
const params = {
name: service,
disabled: false,
rights: rights
};
console.log('----------------- addService')
console.log(' service', service)
console.log(' user', user)
console.log(' params', params)
const addUserToService = (user) => api.updateUserRights(key, user);
api.addService(service, params)
// First Add the Service
.then(res => {
dispatch({
type: actionTypes.ADD_SERVICE,
payload: {
service,
rights
}
});
})
// Then Update the Admin to have the Service and Rights
.then(addUserToService(user))
}
有什么想法吗?如何重写?
最佳答案
.then
将函数作为参数而不是函数调用。
尝试将链接的then
更改为
// Then Update the Admin to have the Service and Rights
.then(res => { addUserToService(user) } )