소개
게시글
질문&답변
2022.06.06
ios 시뮬레이터가 꺼집니다
xcode에서 빌드하고 실행 해보니 (사진) 'cyclone' is not a recognized processor for this target (ignoring processor) 다음 같은 에러가 뜹니다...구글링을 해봤는데 m1문제라고 하는거 같은데...혹시 해결책을 알고 계실가요?
- 0
- 3
- 430
질문&답변
2022.05.21
npm run android가 자꾸 에러가 생깁니다....
자바 삭제한다음 11버전으로 새로 설치하고, 경로도 바꾸니 실행됩니다!!! 빠른 답변 주셔서 정말 감사합니다^^
- 0
- 2
- 578
질문&답변
2019.11.13
sagas부분에 addPost에서 addPostAPI를 못불러와요...
console.error(e) 하니깐 잘못된 부분이 call을 호출 하지 않앗엇네요ㅜㅜ....에러난곳을 로그를 찍어본다는걸 생각 못햇습니다 ㅜㅜ 정말 감사합니다 제로초님!!!
- 0
- 4
- 319
질문&답변
2019.11.13
sagas부분에 addPost에서 addPostAPI를 못불러와요...
네트워크탭 부분입니다. (사진)--------------------------- components에 UserProfile 부분입니다. const PostForm = () => { const dispatch = useDispatch(); const [text, setText] = useState(""); const { imagePaths, isAddingPost, postAdded } = useSelector( state => state.post ); useEffect(() => { setText(""); }, [postAdded === true]); const onSubmitForm = useCallback( e => { e.preventDefault(); if (!text || !text.trim()) { return alert("게시글을 작성하세요."); } console.log("PostForm"); dispatch({ type: ADD_POST_REQUEST, data: { content: text.trim() } }); }, [text] ); const onChangeText = useCallback(e => { setText(e.target.value); }, []); --------------------------- sagas/post에 addpost 부분 3종 셋트입니다. function addPostAPI(postData) { console.log("addPostAPI"); return axios.post("/post/", postData, { withCredentials: true });}function* addPost(action) { try { console.log("addPost1"); const result = yield call(addPostAPI, action.data); console.log("addPost2"); yield put({ type: ADD_POST_SUCCESS, data: result.data }); } catch (e) { yield put({ type: ADD_POST_FAILURE, error: e }); }}function* watchAddPost() { console.log("watchAddPost"); yield takeLatest(ADD_POST_REQUEST, addPost);} --------------------------- back/routes/post 부분입니다. router.post('/', async (req, res, next) => { // POST /api/post try { const hashtags = req.body.content.match(/#[^\s]+/g); const newPost = await db.Post.create({ content: req.body.content, // ex) '제로초 파이팅 #구독 #좋아요 눌러주세요' UserId: req.user.id, }); if (hashtags) { const result = await Promise.all(hashtags.map(tag => db.Hashtag.findOrCreate({ where: { name: tag.slice(1).toLowerCase() }, }))); console.log(result); await newPost.addHashtags(result.map(r => r[0])); } // const User = await newPost.getUser(); // newPost.User = User; // res.json(newPost); const fullPost = await db.Post.findOne({ where: { id: newPost.id }, include: [{ model: db.User, }], }); res.json(fullPost); } catch (e) { console.error(e); next(e); }}); --------------------------- 혹시 몰라서 지금 오류난 깃 허브 주소 입니다. https://github.com/park-chang-jin/react_nodebird (ch5_1 부분이 오류난 곳입니다)
- 0
- 4
- 319
질문&답변
2019.11.08
프론트서버에서 백앤드 서버로 못가는거 같아요
테이블을 다시 만드니 해결 됫어요 ㅎㅎ 정말 감사합니다!!!
- 0
- 2
- 271