Django + Angular2: How to fetch data from database?

vpd

I am using angular2 as a front end in my html pages.I have a django project that uses postgresql. Which is the best approach to use the angular2 in the django project to connect to the django models and the database to perform basic operations(CRUD)like Read,Update etc?

Currently I need to fetch the data from the database dynamically. (e.g.If user clicks on the product from the product list then product details should be retrieved from the database and it is shown to the user)

Any advice or reference example link will be helpful.

praba230890

Create REST api end points using Django (use DRF for standard REST api's or just use vanilla django to generate json response for the requests and call it REST api).

For ex: /product/:id is the api end point you've created to fetch the details of a particular product in Django

Then use Angular to request throught those API's and get the responses and do whatever you want with that data.

For ex: make a get request to /product/1 to fetch the details of a product with PK = 1 when the user clicks that product.

Browse through Github for some inspiration.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to fetch a particular data from database using Angular Observer

From Dev

how to fetch data from database in Hibernate

From Dev

how to fetch data from database randomly?

From Dev

how to fetch data from database in Hibernate

From Dev

how to fetch the data from local database on the phonegap

From Dev

How to fetch data from database C#

From Dev

How to fetch and display the data from the database?

From Dev

how to fetch data from database in odoo 9

From Dev

How to fetch a data from the database and display it on ListView?

From Dev

How to fetch data from database into textbox

From Dev

How to fetch data from link tag in django?

From Dev

How to bulk fetch model objects from database handled by django/sqlalchemy

From Dev

Fetch data from database in php

From Dev

Fetch data from a database in rails

From Dev

Fetch data from database in codeigniter

From Dev

Fetch data from a database in rails

From Dev

PHP Fetch Data From Database

From Dev

Fetch data from FMDB Database

From Dev

How to fetch data from MySQL database in JavaScript to build a chart?

From Dev

How to Fetch Data from database using Entity Framework 6

From Dev

How to fetch table data from database in Orchard CMS?

From Dev

How to insert and fetch data from sqlite database in android?

From Dev

How to fetch data from MySQL database and Load it to Spinner?

From Dev

How to fetch multiple data from database and store in one variable?

From Dev

How to fetch multiple data from mysql database with only one query?

From Dev

How to fetch table data from database in Orchard CMS?

From Dev

how to fetch data from mysql database using php

From Dev

How to fetch data dynamically in Java Swing from MS Access database?

From Dev

Java - How to fetch all rows data from database

Related Related

  1. 1

    How to fetch a particular data from database using Angular Observer

  2. 2

    how to fetch data from database in Hibernate

  3. 3

    how to fetch data from database randomly?

  4. 4

    how to fetch data from database in Hibernate

  5. 5

    how to fetch the data from local database on the phonegap

  6. 6

    How to fetch data from database C#

  7. 7

    How to fetch and display the data from the database?

  8. 8

    how to fetch data from database in odoo 9

  9. 9

    How to fetch a data from the database and display it on ListView?

  10. 10

    How to fetch data from database into textbox

  11. 11

    How to fetch data from link tag in django?

  12. 12

    How to bulk fetch model objects from database handled by django/sqlalchemy

  13. 13

    Fetch data from database in php

  14. 14

    Fetch data from a database in rails

  15. 15

    Fetch data from database in codeigniter

  16. 16

    Fetch data from a database in rails

  17. 17

    PHP Fetch Data From Database

  18. 18

    Fetch data from FMDB Database

  19. 19

    How to fetch data from MySQL database in JavaScript to build a chart?

  20. 20

    How to Fetch Data from database using Entity Framework 6

  21. 21

    How to fetch table data from database in Orchard CMS?

  22. 22

    How to insert and fetch data from sqlite database in android?

  23. 23

    How to fetch data from MySQL database and Load it to Spinner?

  24. 24

    How to fetch multiple data from database and store in one variable?

  25. 25

    How to fetch multiple data from mysql database with only one query?

  26. 26

    How to fetch table data from database in Orchard CMS?

  27. 27

    how to fetch data from mysql database using php

  28. 28

    How to fetch data dynamically in Java Swing from MS Access database?

  29. 29

    Java - How to fetch all rows data from database

HotTag

Archive