希望你做得很好 ?
我遇到了 Apollo Client 查询 Strapi API 的问题。
我创建了以下突变:
export const POST_MOBILE_USER = gql`
mutation CreateMobileUser(
$first_name: String!
$isOnboarded: Boolean!
$isSignedUp: Boolean!
$isUnder25: Boolean!
$points: Integer!
$user_id: String!
) {
createUtilisateursMobile(
input: {
data: {
first_name: "$first_name"
isOnboarded: true
isSignedUp: $isSignedUp
isUnder25: $isUnder25
points: $points
user_id: $user_id
}
}
) {
utilisateursMobile {
user_id
first_name
isOnboarded
isSignedUp
isUnder25
points
}
}
}
`;
我在我的组件中使用 useMutation 挂钩来传递一个对象,以便发布到我的数据库中。
这是在我的注册组件中进行的调用:
const [signUpUser] = useMutation(POST_MOBILE_USER, {
onError(error) {
console.log('ERR', error);
},
});
这是 onPress 在我的确认按钮上进行的 signUpuser() 调用:
const handleValidation = async () => {
tmpUser.isSignedUp = true;
tmpUser.points = 0;
console.log('tmpUser', tmpUser);
try {
await signUpUser({
variables: {
first_name: tmpUser.first_name,
isOnboarded: tmpUser.isOnboarded,
isSignedUp: tmpUser.isSignedUp,
isUnder25: tmpUser.isUnder25,
points: tmpUser.points,
user_id: tmpUser.user_id,
},
});
setUser({...tmpUser});
} catch (err) {
console.log('ICI', err);
}
我面临的问题是 400 Bad 请求,没有更多信息:
ERR [Error: Response not successful: Received status code 400]
有没有人面临同样的问题?或者有人可以帮我解决这个问题,我在过去两天一直被困住!
谢谢 !!