Mefeto / Mefeto-v2-fe

국민 발의 서비스 메페토입니다.
https://mefeto-v2-fe.vercel.app
2 stars 0 forks source link

[Bug] Article post api route sql syntax error #43

Closed sleeep23 closed 1 year ago

sleeep23 commented 1 year ago

문제 설명

api/articles 의 주소로 POST 요청을 보내게끔 시도를 해보았습니다. 하지만 제대로 포스트되지 않는 에러를 만났습니다.

제가 만난 에러들은 다음과 같습니다.

zod의 경우 해결되어 이를 제외한, 아래 경우의 에러 전문을 다음과 같이 첨부해두겠습니다.

혹시 제 코드에 문제가 있다면 알려주시면 감사하겠습니다!

<form
        onSubmit={form.onSubmit(async (values) => {
          try {
            const content = await generateHtmlFromInput(values);
            const res = await axios.post(`/api/articles`, {
              title: values.title,
              thumbnail_url:
                "https://images.unsplash.com/... 생략하겠습니다.",
              categories: ["test1", "test2", "test3"],
              content: content,
            });

            if (res.status === 200) {
              await notifications.show({
                title: "아티클 작성완료!",
                message: "아티클을 작성 완료했습니다!",
              });
            }
          } catch (e) {
            notifications.show({
              title: "아티클 업로드 오류!",
              message:
                "아티클이 제대로 업로드 되지 않았습니다. 다시 한번 시도해주시기 바랍니다",
              color: "red",
            });
          }
        })}
>
2paperstar commented 1 year ago

@sleeep23 https://github.com/Mefeto/Mefeto-v2-fe/tree/feature/issue-20/write-article-ui 브랜치에서 수정했습니다 :)

sleeep23 commented 1 year ago

확인했습니다! 감사합니다!