Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- intellij
- Python
- 타자 게임 만들기
- node.js로 로그인하기
- 노드에 리액트 추가하기
- props
- Colaboratory 글자 깨짐
- 계산맞추기 게임
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- node.js 설치
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- googleColaboratory
- spring-boot
- 웹 게임을 만들며 배우는 리액트
- Spring-Framework
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 따라하며 배우는 노드 리액트 기본 강의
- Do it 자바스크립트 + 제이쿼리 입문
- react
- 인프런
- 거북이 대포 게임
- 모두의 파이썬
- JS 개념
- vs code 내 node
- 자바스크립트
- DB Browser
- 리액트
- react오류
- 모던자바스크립트
- Concurrently
Archives
- Today
- Total
프로그래밍 삽질 중
sequelize belongsToMany 내 as 시퀄라이즈 사용 본문
* 상황 : User함수를 Followers, Followings로 as로 명칭 정함, through를 통해 "Follow" 모델을 생성
= (sql문: create Follow)
- as에 적힌 문자를 통해 다양한 시퀄라이즈 생성(belongsToMany 일 때만 가능)
ex) addFollowings, addFollowing, getFollowing, setFollowing, removeFollowing 지원
A.getB : 관계 있는 로우(row) 조회
A.addB : 관계 생성
A.setB : 관계 수정
A.removeB : 관계 제거
db.User.belongsToMany(db.User, {
foreignKey: "followingId",
as: "Followers",
through: "Follow",
});
db.User.belongsToMany(db.User, {
foreignKey: "followerId",
as: "Followings",
through: "Follow",
});
https://www.inflearn.com/questions/6670
https://www.youtube.com/watch?v=qIVTBRAaVBQ&list=PLcqDmjxt30RuRk0gcFwT_s7nexAYRF2_I&index=58
(1번) model : Post 항목 삭제 vs (2번) model Use에서 belongsToMany를 통해 만들어진 as로 팔로잉 삭제
//1번
router.delete("/:id", isLoggedIn, async (req, res, next) => {
try {
await Post.destroy({ where: { id: req.params.id, userId: req.user.id } });
res.send("OK");
} catch (error) {
console.error(error);
next(error);
}
//2번
router.post("/:id/unfollow", async (req, res, next) => {
try {
const user = await User.findOne({ where: { id: req.user.id } });
if (user) {
const result = await user.removeFollowing(parseInt(req.params.id, 10));
res.json(result);
} else {
res.status(404).send("no user");
}
} catch (error) {
console.error(error);
next(error);
}
});
'과거 프로그래밍 자료들 > 프로젝트' 카테고리의 다른 글
form내 action 경로가 실행되기 전 onSubmit 사용하기 (1) | 2022.09.07 |
---|---|
SNS서비스 좋아요 버튼 및 좋아요 취소 버튼 만들기 (0) | 2022.09.07 |
req.user.id = undefined 일 때 조건(로그인/비로그인일 경우) (0) | 2022.09.05 |
sequelize 이용한 axios get, post 차이 정리(mysql 항목 검색) (0) | 2022.09.03 |
sql 오류 및 sequelize 정리 (0) | 2022.09.01 |