1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- const router = require('express').Router()
- import { Post } from '../db/models'
- router.get('/', async (req: any, res: any, next: any) => {
- try {
- Post.findAll().then((p: any) => res.json(p))
- //Post.findAllWithIncludes().then((p: any) => res.json(p))
- } catch (err) {
- next(err)
- }
- })
- router.get('/:id', async (req: any, res: any, next: any) => {
- try {
- Post.findByIdWithIncludes(req.params.id).then((p: any) => res.json(p))
- } catch (err) {
- next(err)
- }
- })
- router.post('/', async (req: any, res: any, next: any) => {
- try {
- Post.create(req.body).then((post: any) =>
- Post.findByIdWithIncludes(post.id).then((p: any) => res.json(p))
- )
- } catch (err) {
- next(err)
- }
- })
- router.put('/:id', async (req: any, res: any, next: any) => {
- try {
- Post.findByPk(req.params.id).then((post: any) =>
- post
- .update(req.body)
- .then(() =>
- Post.findByIdWithIncludes(req.params.id).then((p: any) =>
- res.json(p)
- )
- )
- )
- } catch (err) {
- next(err)
- }
- })
- router.post('/:id/delete', async (req: any, res: any, next: any) => {
- try {
- //Post.findByPk(req.params.id).then((post:any)=>res.json(post.delete())
- } catch (err) {
- next(err)
- }
- })
- module.exports = router
|