Home Web Front-end Vue.js Technical details: Vue3+Django4 new project construction

Technical details: Vue3+Django4 new project construction

Sep 08, 2023 am 08:51 AM
organize vue - vue is a popular javascript framework

Technical details: Vue3+Django4 new project construction

Detailed technical explanation: Vue3 Django4 new project construction

Introduction:
Nowadays, the development model of front-end and back-end separation has become an essential skill for enterprise development. Vue and Django are very popular front-end and back-end frameworks. Their combination can greatly improve development efficiency and code quality. This article will introduce in detail how to build a new project, using Vue3 as the front-end framework and Django4 as the back-end framework, providing readers with code examples and detailed technical explanations.

1. Environment setup

  1. Front-end environment setup
    First, make sure you have installed the Node.js environment. Then, install Vue CLI 4.x using the following command:
npm install -g @vue/cli
Copy after login

Create a new Vue3 project using the following command:

vue create project-name
Copy after login

During the project initialization process, you need to select Vue3 as the version . After initialization is completed, enter the project directory and use the following command to run the project:

cd project-name
npm run serve
Copy after login
  1. Backend environment setup
    First, make sure you have installed the Python environment. It is recommended to use Python 3.9. Then, use the following Command to install Django 4.x:
pip install Django
Copy after login

Create a new Django project:

django-admin startproject project-name
Copy after login

Enter the project directory and use the following command to run the project:

cd project-name
python manage.py runserver
Copy after login

2. Front-end and back-end joint debugging

  1. Front-end configuration
    In the root directory of the Vue3 project, find the vue.config.js file. If it does not exist, create it manually. Add the following code to the file:
module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:8000', // 后端地址
        ws: true,
        changeOrigin: true
      }
    }
  }
}
Copy after login

This code configures the proxy server to forward the front-end API request to the back-end address.

  1. Backend configuration
    In the root directory of the Django project, find the settings.py file, modify ALLOWED_HOSTS and INSTALLED_APPS as follows:
ALLOWED_HOSTS = ['localhost', '127.0.0.1']

INSTALLED_APPS = [
    ...
    'corsheaders',
    ...
]

MIDDLEWARE = [
    ...
    'corsheaders.middleware.CorsMiddleware',
    ...
]
Copy after login

Then, in settings. Add the following code at the end of the py file:

CORS_ALLOW_ALL_ORIGINS = True
Copy after login

This code is configured to allow cross-domain requests.

3. Front-end and back-end interaction

  1. Front-end request
    In the Vue3 project, API requests are made by using the axios library. First, use the following command to install axios:
npm install axios
Copy after login

Then, in the component that needs to call the API, introduce axios and send the request:

import axios from 'axios'

axios.get('/api/example')
  .then(response => {
    console.log(response.data)
  })
  .catch(error => {
    console.error(error)
  })
Copy after login
  1. Backend response
    In Django, the Django Rest Framework (DRF) is used to build APIs. First, use the following command to install DRF:
pip install djangorestframework
Copy after login

Then, in the Django app directory, create a new file serializers.py and write the following code:

from rest_framework import serializers

class ExampleSerializer(serializers.Serializer):
    id = serializers.IntegerField()
    name = serializers.CharField(max_length=100)
Copy after login

Next, Create a new file views.py and write the following code:

from rest_framework.decorators import api_view
from rest_framework.response import Response
from .serializers import ExampleSerializer

@api_view(['GET'])
def example(request):
    data = [
        {'id': 1, 'name': 'example1'},
        {'id': 2, 'name': 'example2'},
    ]
    serializer = ExampleSerializer(data, many=True)
    return Response(serializer.data)
Copy after login

Finally, in the Django project directory, find the urls.py file and add the following code:

from django.urls import path
from . import views

urlpatterns = [
    path('example/', views.example),
]
Copy after login

In this way, the current end When sending a GET request to /api/example, the backend will return example data.

Conclusion:
Through the detailed explanation of this article, readers will understand how to use Vue3 as the front-end framework and Django4 as the back-end framework to build a new project. We explained the process of environment setup, front-end and back-end joint debugging, and front-end and back-end interaction, and provided corresponding code examples. I hope readers can master the basic usage of Vue and Django through this article and be able to apply them to actual projects.

The above is the detailed content of Technical details: Vue3+Django4 new project construction. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is Vuex and how do I use it for state management in Vue applications? What is Vuex and how do I use it for state management in Vue applications? Mar 11, 2025 pm 07:23 PM

This article explains Vuex, a state management library for Vue.js. It details core concepts (state, getters, mutations, actions) and demonstrates usage, emphasizing its benefits for larger projects over simpler alternatives. Debugging and structuri

How do I create and use custom plugins in Vue.js? How do I create and use custom plugins in Vue.js? Mar 14, 2025 pm 07:07 PM

Article discusses creating and using custom Vue.js plugins, including development, integration, and maintenance best practices.

How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)? How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)? Mar 11, 2025 pm 07:22 PM

This article explores advanced Vue Router techniques. It covers dynamic routing (using parameters), nested routes for hierarchical navigation, and route guards for controlling access and data fetching. Best practices for managing complex route conf

What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)? What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)? Mar 14, 2025 pm 07:05 PM

Vue.js enhances web development with its Component-Based Architecture, Virtual DOM for performance, and Reactive Data Binding for real-time UI updates.

How do I configure Vue CLI to use different build targets (development, production)? How do I configure Vue CLI to use different build targets (development, production)? Mar 18, 2025 pm 12:34 PM

The article explains how to configure Vue CLI for different build targets, switch environments, optimize production builds, and ensure source maps in development for debugging.

How do I use Vue with Docker for containerized deployment? How do I use Vue with Docker for containerized deployment? Mar 14, 2025 pm 07:00 PM

The article discusses using Vue with Docker for deployment, focusing on setup, optimization, management, and performance monitoring of Vue applications in containers.

How do I use tree shaking in Vue.js to remove unused code? How do I use tree shaking in Vue.js to remove unused code? Mar 18, 2025 pm 12:45 PM

The article discusses using tree shaking in Vue.js to remove unused code, detailing setup with ES6 modules, Webpack configuration, and best practices for effective implementation.Character count: 159

How can I contribute to the Vue.js community? How can I contribute to the Vue.js community? Mar 14, 2025 pm 07:03 PM

The article discusses various ways to contribute to the Vue.js community, including improving documentation, answering questions, coding, creating content, organizing events, and financial support. It also covers getting involved in open-source proje

See all articles