게시글
질문&답변
2022.09.25
업로드시 POST http://localhost:3065/ 404 (Not Found) 에러질문입니다.
정말 죄송한데 마지막으로 질문 하나만 드리겠습니다.이미지를 업로드한 뒤 추가로 업로드하면 다음과 같이 이전 업로드를 포함해서 실행됩니다.(사진)(사진)(사진)(사진)onBeforeUpload를 사용해서 업로드 전에 조건을 줘서 첫 업로드를 제외하고 실행할 수 있을것같은데 혹시 이부분에 대해서 답변 받을 수 있을까요?혼자 해결해보려고 계속 찾아봤는데 답을 찾기 힘들어서 질문드립니다.postingform const onChangeImages = useCallback((e) => { const imageFormData = new FormData(); e.fileList.forEach((f) => { imageFormData.append('image', f.originFileObj); }); dispatch({ type: UPLOAD_IMAGES_REQUEST, data: imageFormData, }) }, []); const onBeforeUpload = useCallback((file, fileList) => { // Access file content here and do something with it // console.log(file) // Prevent upload return false }, []);req.files 출력결과router.post('/images', isLoggedIn, upload.array('image'), async (req, res, next) => { try { console.log('라우터', req.files); res.json(req.files.map((v) => v.filename)); } catch (error) { console.error(error); next(error); } });(사진)(사진)
- 0
- 2
- 1.6K
질문&답변
2022.07.06
해시태그 정규표현식관련해서 질문드리겠습니다
답변 감사합니다!! 추가로 궁금한점이있는데 해당 강의에서 컴포넌트 함수안을 소괄호로 작성하셨는데 혹시 컴포넌트 함수의 중괄호{}, 소괄호()의 차이점은 무엇인가요?
- 0
- 2
- 398
질문&답변
2022.06.07
Unhandled Runtime Error질문입니다
AppLayout.js파일에서 앤트디자인 컴포넌트를 사용하고 실행했을때만해도 에러가 발생하지 않았는데 이 후 _app.js파일 생성하고 앤트디자인 css파일 import하면서부터 에러가 발생했습니다. (사진)
- 0
- 2
- 432