카페검색 본문
카페글 본문
-
new mongodb.ObjectId(this._id) 변경 2025.01.18해당카페글 미리보기
db .collection('products') .updateOne({ _id: new mongodb.ObjectId(this._id) }, { $set: this }); } else { dbOp = db...this); } return dbOp .then(result => { console.log(result); }) .catch(err => { console.log(err); }); } 이렇게 사용...
-
JWT 인증 미들웨어 2025.02.13해당카페글 미리보기
try { decodedToken = jwt.verify(token, 'kitae_secret'); // 토큰 검증 } catch (err) { err.statusCode = 500; throw err; } if (!decodedToken) { const error = new Error('인증되지 않은 사용자입니다.'); error.statusCode = 401; throw error...
-
New photos of Gale Harold at the TSC screening (11/9/2011) 2011.11.10해당카페글 미리보기
for Cassie. And what should we expect for the back half of The Secret Circle? How about some deaths and then new blood– err, so to speak? “I’m a sweet guy from Canada; I like people,” Miller said when pointing out he doesn’t like to...
-
이미지 sd업로드 실행문제점 소스자문요구합니다. 2025.02.08해당카페글 미리보기
UPLOAD_ERR_EXTENSION (PHP 확장 프로그램이 파일 업로드를 중지했습니다. PHP는 파일 업로드를 중지시킨 확장자를 확인하는 방법을 제공하지 않습니다. phpinfo()로 로드된 확장 목록을 검사하면 도움이 될 수 있습니다.)', ); // 업로드 가능한 파일...
-
스프링(Spring)에서 RestTemplate, Https 통신 2024.12.23해당카페글 미리보기
ObjectMapper mapper = new ObjectMapper(); resultVo = mapper.readValue(res, new TypeReference<ResultVo<ResultResponse...Exception ex) { ex.printStackTrace(); log.error("err : {}", ex.getMessage()); } if ( resultVo != null && Const.LOGIN...