Strapi 不会接受我的 axios.post 大概是因为关系

问题描述 投票:0回答:0

这将返回错误的请求消息(错误 400)。 我的假设是 Strapi 正在阻止它.. 所有角色和权限都被授予我双重检查。 populate=* 在那里。我在 strapi 文档之后尝试了现场部门的其他一些方法,但无济于事。 这是我的代码:

const { data: response, refetch } = useQuery(
    ["post2"],
    async () => {
      return axios
        .post("http://localhost:1337/api/expences?populate=*", {
          data: {
            month: "march",
            exepenseCatagory: "Bills",
            division: { connect: [{ id: 2 }, { id: 2 }] },
            amount: 3,
            comment: "testing",
          },
        })
        .then((res) => console.log(res))
        .catch((err) => console.log(err));
    },
    {
      onSuccess: () => {
        console.log("some message");
      },
      enabled: false,
    }
  );

请帮忙

reactjs axios relationship strapi react-query
© www.soinside.com 2019 - 2024. All rights reserved.