search
HomeWeb Front-endVue.jsPractical experience sharing: Vue3+Django4 full-stack project development guide

Practical experience sharing: Vue3+Django4 full-stack project development guide

Practical experience sharing: Vue3 Django4 full-stack project development guide

Introduction:
In today's era of highly developed Internet, full-stack development has become more and more A direction that many developers pay attention to and learn from. The Vue framework is currently one of the most popular front-end frameworks, and Django is a powerful Python back-end framework. Their combination can provide us with a comprehensive full-stack development experience. This article will introduce how to use Vue3 and Django4 to build a complete full-stack project, and share some development experience and code examples.

1. Environment preparation
Before starting the project, you need to prepare the environment. Make sure you have the following software installed:

  1. Node.js and npm: used to install and manage front-end dependencies.
  2. Python and pip: used to install and manage back-end dependencies.
  3. Vue CLI: Command line tool for creating Vue projects.
  4. Django: used to create and manage backend projects.

2. Create a Vue3 project
First, we use Vue CLI to create a Vue3 project. Open the command line interface and execute the following command:

$ vue create vue_project

Follow the command line prompts, select the configuration you need, and wait for the project to be created.

3. Create a Django project
Next, we use Django to create a back-end project. Execute the following command on the command line interface:

$ django-admin startproject django_project

This will create a folder named django_project in the current directory and generate the skeleton of a project.

4. Configure the front-end and back-end connections
In this step, we need to configure the front-end and back-end connections so that the front and back ends can communicate with each other. First, create a file .env.development in the vue_project/src directory and add the following content:

VUE_APP_BACKEND_URL=http://localhost:8000

Herehttp://localhost:8000 is The address where the Django backend is running.

Next, open the vue_project/src/main.js file and add the following code before createApp:

import axios from 'axios'
axios.defaults.baseURL = process.env.VUE_APP_BACKEND_URL

This code snippet sets the default base URL of axios to The backend address we just configured.

5. Develop the front-end page
Now, we can start developing the front-end page. The syntax of Vue3 is slightly different from Vue2, but generally similar. Vue3 provides a more powerful combined API that can better manage code logic. Below is a simple example.

First, create a component file named HelloWorld.vue in the vue_project/src/components directory and add the following content:

<template>
  <div class="hello">
    <h1 id="message">{{ message }}</h1>
  </div>
</template>

<script>
import { ref } from 'vue'
export default {
  name: 'HelloWorld',
  setup() {
    const message = ref('Hello, Vue3!')
    return {
      message
    }
  }
}
</script>

<style scoped>
h1 {
  color: red;
}
</style>

This component displays a The red title, the title content is set through the responsive variable defined by ref.

In order to use this component in the page, we need to introduce it in vue_project/src/App.vue. First, delete the original content, and then add the following code:

<template>
  <div id="app">
    <HelloWorld/>
  </div>
</template>

<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
  name: 'App',
  components: {
    HelloWorld
  }
}
</script>

<style>
#app {
  font-family: 'Arial', sans-serif;
}
</style>

Here we import the HelloWorld.vue component we just created and reference it in the page.

6. Develop back-end API
In the Django project, we need to create an API to provide back-end services. Take creating a simple user API as an example.

First, execute the following command in the django_project directory to create an application named users:

$ python manage.py startapp users

Create an application named views in the users directory. py file and add the following code:

from django.http import JsonResponse

def get_users(request):
    users = [
        {"id": 1, "name": "Alice"},
        {"id": 2, "name": "Bob"},
        {"id": 3, "name": "Charlie"}
    ]
    return JsonResponse(users, safe=False)

This simple view function returns a JSON response with user information.

Next, open the django_project/django_project/urls.py file and add the following code:

from django.urls import path
from users.views import get_users

urlpatterns = [
    path('api/users', get_users),
]

This code snippet maps the get_users view function to the path /api/users.

7. Front-end and back-end communication
In order for the front-end to access the back-end API, we need to use axios to send HTTP requests. Go back to the vue_project/src/components/HelloWorld.vue file and add the following code in the setup function:

import axios from 'axios'
export default {
  name: 'HelloWorld',
  setup() {
    const message = ref('Hello, Vue3!')
    axios.get('/api/users').then((response) => {
      console.log(response.data)
    })
    return {
      message
    }
  }
}

This code snippet uses axios to send a GET request to /api/ users and print the returned data.

8. Run the project
Finally, we only need to run the front-end and back-end projects separately.

Execute the following command in the vue_project directory:

$ npm install
$ npm run serve

Execute the following command in the django_project directory:

$ python manage.py runserver

Now, open the browser and visit http:// localhost:8080, if everything goes well, you should be able to see the data returned by the backend API in the console.

Summary:
This article introduces how to use Vue3 and Django4 to build a complete full-stack project, and shares some practical experience and code examples. Through this full-stack development approach, we can build web applications with front-end and back-end separation more efficiently. I hope this article can help developers who are learning full-stack development.

The above is the detailed content of Practical experience sharing: Vue3+Django4 full-stack project development guide. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)