반응형

웹 프로그래밍 38

Nest js map은 키를 인덱스로 접근하지 못한다? get / set / for

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/set Map.prototype.set() - JavaScript | MDN The set() method adds or updates an entry in a Map object with a specified key and a value. developer.mozilla.org let gameList: Map = new Map(); // gameId Game let gameList: Map = new Map(); // gameId Game 이런식으로 맵 객체를 만들었다하면 값을 집어넣으려면 gameList.set(gameId, game); gameLis..

웹 프로그래밍 2022.09.10

querySelector() 계속 null일 때

https://stackoverflow.com/questions/20495960/document-queryselector-is-null-error document.querySelector(...) is null error For image upload in a cakephp project I used java-script.I added this js file in app\View\Layouts default.ctp js code document.querySelector('input[type=file]').addEventListener('change', funct... stackoverflow.com js가 html보다 먼저 실행되어서 생기는 에러 를 가장 마지막으로 옮겼더니 해결되었다

css에 폰트 적용하는 방법

A. link로 첨부하는 폰트 B. otf / ttf 형식의 파일로 폰트를 다운 받은 경우 로 나눌 수 있다. A. link로 첨부하는 폰트 https://www.a-mean-blog.com/ko/blog/Node-JS-%EC%B2%AB%EA%B1%B8%EC%9D%8C/%EA%B2%8C%EC%8B%9C%ED%8C%90-%EB%A7%8C%EB%93%A4%EA%B8%B0/%EA%B2%8C%EC%8B%9C%ED%8C%90-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EC%83%9D%EC%84%B1-%EB%B0%8F-navbar Node JS 첫걸음/게시판 만들기: 게시판 - 프로젝트 생성 및 navbar - A MEAN Blog /* * 이 강의는 2016년 처음 작성되었으나 2020년..

redirect 하려면 res.end()하기 전에 302 location 고치기

https://stackoverflow.com/questions/34101219/redirect-after-res-end-in-nodejs Redirect after res.end() in nodejs i am using jsonwebtoken to authenticate user. my plan is to save the token at header and then get the header value before any request made . yes i did save the value in header at login successfull... stackoverflow.com https://stackoverflow.com/questions/27366107/second-select-query-if..

데이터베이스 설정할 때 중복 체크하기 위해서 if exists 문구 넣어주기

var mysql = require('mysql'); var db = mysql.createConnection({ host:'localhost', user:'root', password:'', // database: 'opentutorials' // database : 'express_db' }); db.connect(function (err) { if (err) throw err; console.log("Connected"); // Error : ER_DB_CREATE_EXISTS db.query(`CREATE DATABASE express_db`, function (err, result) { if (err) throw err; console.log('database created'); }); db.q..

ERROR 2002 (HY000): socket '/tmp/mysql.sock' (2) 해결하려고 brew services start mysql 함

http://meonggae.blogspot.com/2017/03/db-mac-mysql-1-error-2002-hy000-cant.html [db] mac에서 mysql환경설정 셋팅하기 1편 - 설치 및 접속, ERROR 2002 (HY000) : Can't connect to local MySQL server db, mysql, error2002 meonggae.blogspot.com ➜ simplenodejs git:(master) ✗ mysql -u root -p Enter password: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) mysql 설치 후 "mysql -u ro..

[코로나맵2] mongoose 패키지 설치 및 설정

1. 작업 폴더로 가서 npm install mongoose 2. bin 폴더 안의 www 파일에 들어간다 3. /app 등을 불러오는 곳에 변수 하나 정의해준다 const mongoose = require("mongoose"); const mongoose = require('mongoose'); let db = mongoose.connection; db.on('error', console.error); db.once("open", ()=> { console.log("Connected to MongoDB Server"); }); mongoose.connect() 여기까지 썼나?! 그런 다음 connect 함수에는 string 이 하나 들어가야 한다 atlas site로 가서 connect 버튼을 누르고 ..

반응형