Giter VIP home page Giter VIP logo

pymike00 / the-complete-guide-to-drf-and-vuejs Goto Github PK

View Code? Open in Web Editor NEW
129.0 7.0 66.0 99 KB

:loudspeaker: Source Code from my Web Dev Course *The Complete Guide To Django REST Framework and Vue JS*

Home Page: https://www.udemy.com/the-complete-guide-to-django-rest-framework-and-vue-js/

Python 78.19% HTML 12.39% JavaScript 9.41%
django django-rest-framework djangorestframework rest restapi rest-api single-page-applications vuejs vue django-vue django-spa django-single-page-application django-vue-js learn-django

the-complete-guide-to-drf-and-vuejs's Introduction

The Complete Guide to Django REST Framework and Vue JS

The source code of my course The Complete Guide to Django REST Framework and Vue JS, where you can learn how to build professional Single Page Applications with Django and Vue JS.

This is an intermediate/advanced level course, therefore knowledge of Python, Django, HTML, CSS and JavaScript is assumed.

Enroll now if you want to learn how to build professional REST APIs with Django REST Framework, powerful Reactive Components with Vue JS and Single Page Applications using both Django and Vue JS.

The course is available in English on Udemy:

English Version: ENROLL NOW

And in Italian in the Academy section of my Website ProgrammareInPython.it

VERSIONE ITALIANA: ISCRIVITI ORA

Are you looking for the Source Code of the end of the course project? You can find it in a dedicated repo here: https://github.com/pymike00/QuestionTime

the-complete-guide-to-drf-and-vuejs's People

Contributors

dependabot[bot] avatar pymike00 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

the-complete-guide-to-drf-and-vuejs's Issues

try/except in examples

Hi, @pymike00. Thank you very much for your courses on Udemy. It is really nice and productivity.
I suggest for you using another way to using try/except in your courses. I think start coding in the properly way is better for any students.

This one:

def product_detail(request, pk):
    try:
        product = Product.objects.get(pk=pk)
        data = {"product": {
                    "name": product.name,
                    "manufacturer": product.manufacturer.name,
                    "description": product.description,
                    "photo": product.photo.url,
                    "price": product.price,
                    "shipping_cost": product.shipping_cost,
                    "quantity": product.quantity,                   
                }}
        response = JsonResponse(data)
    except Product.DoesNotExist:
        response = JsonResponse({
            "error": {
                "code": 404,
                "message": "product not found!"
            }},
            status=404)
    return response

Should be written as:

def product_detail(request, pk):
    try:
        product = Product.objects.get(pk=pk)
    except Product.DoesNotExist: # we should handle any exceptions as soon as possible
        response = JsonResponse({
            "error": {
                "code": 404,
                "message": "product not found!"
            }},
            status=404)
    else:
        data = {"product": {
                    "name": product.name,
                    "manufacturer": product.manufacturer.name,
                    "description": product.description,
                    "photo": product.photo.url,
                    "price": product.price,
                    "shipping_cost": product.shipping_cost,
                    "quantity": product.quantity,                   
                }}
        response = JsonResponse(data)
    return response

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.