웹 프로그래밍

웹 프로그래밍

[Yelpcamp 프로젝트] 리뷰 기능 추가하기

스키마 정의 review 스키마를 정의합니다 const mongoose = require('mongoose'); const Schema = mongoose.Schema; const ReviewSchema = new Schema({ body: { type: String, required: true }, rating: { type: String, required: true } }); module.exports = mongoose.model('Review', ReviewSchema); campground 스키마를 수정합니다. 스키마를 정의하는 부분에서 아래 부분을 추가하면 됩니다. reviews: [ { type: Schema.Types.ObjectId, ref: 'Review' } ] 리뷰 작성 폼 만들기 ..

미안하다 강림이 좀 늦었다
'웹 프로그래밍' 카테고리의 글 목록 (3 Page)