Node.js 와 Mysql 데이터 삽입
Node.js 와 Mysql 데이터 삽입
·
Backend/Node.js
유데미 Node.js 강의를 보면 기존의 쇼핑 사이트는 데이터를 json형태로 관리 하였습니다. 이제는 Mysql을 통해서 데이터를 집어 넣도록 하겠습니다. 제품을 관리하는 models폴더 안에 있는 product.js에서 제품을 저장 할 수 있게하는 save() 기능을 만들도록 하겠습니다. module.exports = class Product { constructor(id, title, imageUrl, description, price) { this.id = id; this.title = title; this.imageUrl = imageUrl; this.description = description; this.price = price; } save() { return db.execute ('INS..