Skip to content

EmptyWu/W2BackEnd

Repository files navigation

Node.js 直播班-2022春季 第八組小組任務

第二週


POST 後端API 設定

heroku 網址

https://infinite-wave-68225.herokuapp.com/

GET 所有資料

https://infinite-wave-68225.herokuapp.com/posts

GET 單筆資料

https://infinite-wave-68225.herokuapp.com/post/:id

POST 新增資料

https://infinite-wave-68225.herokuapp.com/post

DELETE 刪除單筆資料

https://infinite-wave-68225.herokuapp.com/post/:id

Mongoose Schema

const PostSchema = new mongoose.Schema(
    {
        userName: {
            type: String,
            required: [true, "userName必填"],
        },
        userPhoto: String,
        postContent: {
            type: String,
            required: [true, "postContent必填"],
        },
        postImgUrl: String,       
    },
    { 
        versionKey:false,
        timestamps:true
    }
)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •