Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 299 Bytes

File metadata and controls

19 lines (14 loc) · 299 Bytes

Backend with React

CRUD Operations

  • C: Create
  • R: Read
  • U: Update
  • D: delete

HTTP METHODS

  • GET: To retrive data
  • POST: To create new record
  • PUT: To update
  • DELETE: To delete

Connecting React.js with bakend API

Connecting with Django Rest

  • Documentation at django-cores