모든 상품 정보를 데이터베이스에 저장하기
Product Model 만들기 models 폴더에 Product.js 파일 하나를 만든다. const mongoose = require('mongoose'); const Schema = mongoose.Schema; const productSchema = mongoose.Schema({ writer: { type: Schema.Types.ObjectId, ref: 'User' }, title: { type: String, maxlength: 50 }, description: { type:String }, price: { type: Number, default: 0 }, images: { type: Array, default:[] }, sold: { type: Number, maxlength: 100, ..
Select Option 처리하기
import React, { useState } from 'react' import {Typography, Button, Form, Input} from 'antd'; const { Title } = Typography; const { TextArea } = Input; const Continents = [ { key: 1, value: "Africa" }, { key: 2, value: "Europe" }, { key: 3, value: "Asia" }, { key: 4, value: "North America" }, { key: 5, value: "South America" }, { key: 6, value: "Australia" }, { key: 7, value: "Antarctica" } ] fu..