系统后端项目,基于django实现
后端环境:python3、django、sqlite3
直接采用命令行python manage.py runserver
或 pycharm配置启动Pycharm 配置运行 Django 项目
python manage.py makemigrations
python manage.py migrate
No module named 'corsheaders'
解决方法:pip install django-cors-headers
No module named 'numpy'
解决方法:pip install numpy
No module named 'graphviz'
解决方法:pip install graphviz
No module named 'untangle'
解决方法:pip install untangle
项目包含以下主要文件和文件夹:
出现Starting development server at http://localhost:xxxx/
代表启动成功
系统前端项目,基于vue实现
环境配置:npm、node、vue-cli
npm install
安装配置npm server
启动项目node-sass
已废弃"sass": "^1.26.5"
'no-unused-vars': 'off'
一个 Vue 项目通常包含以下主要文件和文件夹:
src/: 包含项目的源代码。
assets/: 存放静态资源文件,如图片、样式表等。
components/: 存放 Vue 组件。
-views/: 存放页面级别的组件。
-router/: 存放路由配置文件。
-store/: 存放 Vuex 状态管理相关文件。
与后端连接api设置
Api.vue下修改const Global_Api = 'http://127.0.0.1:4096'
出现app running at
代表前端启动成功
App running at:
- Local: http://localhost:xxxx/
- Network: http:
前后端可分别开发,后端完成代码接口提供给前端调用即可
from django.http import JsonResponse
def get_data(request):
data = {'message': 'Hello from Django!'}
return JsonResponse(data)
from django.urls import path
from myapp.views import get_data
urlpatterns = [
path('api/get_data/', get_data, name='get_data'),
# 其他 URL 配置...
]
即可得到该功能接口http://localhost:xxxx/api/get_data/
,提供给前端使用
<template>
<div id="app">
<h1>{{ message }}</h1>
</div>
</template>
<script>
export default {
data() {
return {
message: 'Hello from Vue!',
};
},
mounted() {
// 使用后端接口
this.$axios.get('http://127.0.0.1:xxxx/api/get_data/')
.then(response => {
this.message = response.data.message;
})
.catch(error => {
console.error('Error fetching data:', error);
});
},
};
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
</style>