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
- 자바스크립트
- DB Browser
- 모두의 파이썬
- 리액트
- JS 개념
- Colaboratory 글자 깨짐
- react
- react오류
- 모던자바스크립트
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 거북이 대포 게임
- Do it 자바스크립트 + 제이쿼리 입문
- 타자 게임 만들기
- 따라하며 배우는 노드 리액트 기본 강의
- spring-boot
- googleColaboratory
- Concurrently
- node.js로 로그인하기
- 인프런
- intellij
- props
- vs code 내 node
- 계산맞추기 게임
- node.js 설치
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 웹 게임을 만들며 배우는 리액트
- 노드에 리액트 추가하기
- Python
- Spring-Framework
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
Archives
- Today
- Total
프로그래밍 삽질 중
req.user.id = undefined 일 때 조건(로그인/비로그인일 경우) 본문
* 상황 : Word의 값을 찾을 때 UserId값이 필요(SQL : select * from word from UserId = req.user.id)
* req.user.id값은 로그인 하지 않았을 경우 계속 undefined로 표시
* 로그인이 됬을 때만 req.user.id값으로 찾는 정보들이 표시되고 아닐 경우 Word 값 표시되지 않게 하기
const express = require("express");
const { isLoggedIn, isNotLoggedIn } = require("./middlewares");
const { Post, User, Hashtag, Word } = require("../../models");
const { Op, fn, col, literal } = require("sequelize");
const sequelize = require("sequelize");
const router = express.Router();
router.use((req, res, next) => {
//공통으로 쓰임
res.locals.user = req.user;
res.locals.followerCount = req.user ? req.user.Followers.length : 0;
res.locals.followingCount = req.user ? req.user.Followings.length : 0;
res.locals.followerIdList = req.user
? req.user.Followings.map((f) => f.id)
: [];
next();
});
//영단어
router.get("/index", async (req, res, next) => {
try {
if (req.user) { //이 부분을 조건으로 둠
const words = await Word.findAll({
include: {
model: User,
attributes: ["id", "nickname"],
},
order: [["createdAt", "DESC"]],
});
const wordsEasy = await Word.findAll({
include: {
model: User,
attributes: ["id"],
},
attributes: ["id", "english", "korean", "status", "UserId"],
where: {
[Op.or]: [{ status: "A" }, { status: "C" }],
type: "easy",
},
order: [["createdAt", "DESC"]],
});
const wordsMiddle = await Word.findAll({
include: {
model: User,
attributes: ["id"],
},
attributes: ["id", "english", "korean", "status", "UserId"],
where: {
[Op.or]: [{ status: "A" }, { status: "C" }],
type: "middle",
},
order: [["createdAt", "DESC"]],
});
const wordsAdvance = await Word.findAll({
include: {
model: User,
attributes: ["id"],
},
attributes: ["id", "english", "korean", "status", "UserId"],
where: {
[Op.or]: [{ status: "A" }, { status: "C" }],
type: "advance",
},
order: [["createdAt", "DESC"]],
});
const total = await Word.count({
include: {
model: User,
attributes: ["id"],
},
where: {
UserId: req.user.id,
},
});
const counting = await Word.count({
include: {
model: User,
attributes: ["id"],
},
where: {
status: "C",
UserId: req.user.id,
},
});
const deletedWord = await Word.findAll({
include: {
model: User,
attributes: ["id"],
},
attributes: ["id", "english", "korean", "type"],
where: {
status: "D",
},
order: [["createdAt", "DESC"]],
});
res.render("index", {
title: "engWord",
words: words,
wordsEasy: wordsEasy,
wordsMiddle: wordsMiddle,
wordsAdvance: wordsAdvance,
total: total,
counting: counting,
deletedWord: deletedWord,
});
} else {
const words = await Word.findAll({
include: {
model: User,
attributes: ["id", "nickname"],
},
order: [["createdAt", "DESC"]],
});
res.render("index", {
title: "engWord",
words: words,
});
}
} catch (error) {
console.error(error);
next(error);
}
});
* 참고
https://velog.io/@zero_mountain/Error-Log-passport-%EB%A1%9C%EA%B7%B8%EC%9D%B8-%EC%9C%A0%EC%A7%80
'과거 프로그래밍 자료들 > 프로젝트' 카테고리의 다른 글
SNS서비스 좋아요 버튼 및 좋아요 취소 버튼 만들기 (0) | 2022.09.07 |
---|---|
sequelize belongsToMany 내 as 시퀄라이즈 사용 (0) | 2022.09.06 |
sequelize 이용한 axios get, post 차이 정리(mysql 항목 검색) (0) | 2022.09.03 |
sql 오류 및 sequelize 정리 (0) | 2022.09.01 |
[영어단어장 version 1.0] react + mysql + 배포 완료 (0) | 2022.08.25 |