작성
·
194
0
유저 테이블을 다대다 관계로 Followers와 Followings를 정의 했는데
왜 라우터 안에서는 addFollowings가 아닌 addFollowing함수가 생겼는 지 궁금합니다.
(add,remove,get) + 정의된 이름 <= 관계 정의 후 왼쪽과 같은 함수가 만들어 지는 것이 아닌가요???
-models/index.js
//팔로워와 팔로잉 관계
db.User.belongsToMany(db.User, {through : 'Follow', as : 'Followers', foreignKey: 'followingId'});
db.User.belongsToMany(db.User, {through : 'Follow', as : 'Followings', foreignKey: 'followerId'});
-routes/User.js
router.post('/:id/follow', isLoggedIn, async (req,res,next)=>{
...
await user.addFollowing(parseInt( req.params.id, 10 ));
...
}