본문 바로가기
728x90
반응형

Back_end33

node.js) redirect() 응답.redirect('queryString'); -> url의 queryString을 변경하는 node.js의 응답 메서드는 1번만 사용할 수 있다 CRUD를 전부 합쳐서 1본이라고 함 초보 개발자는 하루에 1~2본 정도 치면 normal..? 2021. 4. 25.
node.js) nunjucks로 html 다루기 (feat.날짜) nunjucks 는 html에 변수를 넘겨줄 수 있다. // node.js mysql.createConnection('select date_format(날짜, "%y-%m-%d %T") as date from 테이블', (error, results)=>{ if(error){ //error } else{ 응답.render('html파일',{ 변수:results, } }) // html {% for item in 변수 %} {{ item.date }} {% endfor %} 2021. 4. 22.
node.js) nunjucks (html에 값 전달) nunjucks는 node.js에서 html을 화면에 표현하고 node.js의 값을 전달할 때 사용 npm install nunjucks const express = require('express'); const app = express(); const nunjucks = require('nunjucks'); app.set('view engine', 'html'); nunjucks.configure('views' , { express:app, }) 응답.render('html파일명', { 변수명:'값' }) 2021. 4. 22.
node.js ) mysql 연결 및 사용(maria DB) maria DB도 mysql을 사용한다 npm install mysql 로 패키지 다운 후 const mysql = require('mysql'); let connection = mysql.createConnection({ // mysql 연결 후 database를 객체로 받아오도록 host: '서버 주소', user: '유저 id', password: '유저 password', database: '데이터베이스 이름' }); connection.connect(); // 연결 실행 connection.query('sql 쿼리', (error, result)=>{ if(!error){ // sql 쿼리 후 실행문 }else{ // error 시 실행문 } }) 2021. 4. 22.
728x90
반응형