2、禅道数据看板(django+vue)

2024-05-05 18:32

本文主要是介绍2、禅道数据看板(django+vue),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、vue4搭建数据看板前端框架

1.1vue-cli安装省略。官方文档:https://cli.vuejs.org/
1.2命令行创建app
命令行工具iTerm输入:vue create databoard-front
在这里插入图片描述

启动服务

cd databoard-front
npm run serve

1.3也可以通过 vue ui 命令以图形化界面创建和管理项目:
在这里插入图片描述

2、设置前端的端口号为9527

2.1Vue.config.js指定前端端口


const port = process.env.port || process.env.npm_config_port || 9527
也可以不指定,因为测试环境才会取env环境的参数

npm run serve 启动时,按照配置的端口号启动

2.2Vue.config.js跨域设置代理


module.exports = {lintOnSave: false,devServer: {
​    port: port,//也可以直接写端口号
​    proxy: {'/apis': {
​        target: 'http://localhost:8002',
​        changeOrigin: true,//是否跨域
​        pathRewrite: {'^/apis': ''}}},
​    open: true,
​    overlay: {
​      warnings: false,
​      errors: true}}
},

2.3请求封装
/utils/request.js

// axios拦截器
import axios from 'axios'// create an axios instance
const service = axios.create({// 本地环境解析为"/apis",上线时解析为真正的后端地址baseURL: process.env.VUE_APP_BASE_API,// withCredentials: true, // send cookies when cross-domain requeststimeout: 5000, // request timeout// url = base url + request urlwithCredentials: true,// send cookies when cross-domain requestscrossDomain: true
})
// 设置请求次数,请求的间隙
service.defaults.retry = 3
service.defaults.retryDelay = 1000
// console.log(service)
/** **** request拦截器==>对请求参数做处理 ******/
service.interceptors.request.use(config => {return config},error => {return Promise.reject(error)}
)
/** **** respone拦截器==>对响应做处理 ******/
service.interceptors.response.use(response => {// 成功请求到数据if (response.status === 200) {return Promise.resolve(response)} else {return Promise.reject(response)}},error => {if (error.response) {// console.log('err' + error) // for debugswitch (error.response.status) {case 401:// breakreturn Promise.reject(error)case 404:breakcase 500:break}return Promise.reject(error)} else {// 处理超时的情况const config = error.config// If config does not exist or the retry option is not set, rejectif (!config || !config.retry) return Promise.reject(error)// Set the variable for keeping track of the retry countconfig.__retryCount = config.__retryCount || 0// Check if we've maxed out the total number of retriesif (config.__retryCount >= config.retry) {// Reject with the errorreturn Promise.reject(error)}// Increase the retry countconfig.__retryCount += 1// Create new promise to handle exponential backoffconst backoff = new Promise(function (resolve) {setTimeout(function () {resolve()}, config.retryDelay || 1)})// Return the promise in which recalls axios to retry the requestreturn backoff.then(function () {return service(config)})}}
)
export default service

2.4请求

import request from '@/utils/request'
export function zentaoProject (data) {return request({url: '/zentao_project/',method: 'post',data})
}

2.5vue调用

调用js

import { zentaoProject } from '@/api/zentao_query'export default {name: 'app',components: {zentaoProject},data () {zentaoProjectList:[]},created () {this.getZentaoProjectList()},method:{getZentaoProjectList () {zentaoProject().then(response => {this.zentaoProjectList = response.dataconsole.log(response.data)})},}
}

下拉框

el-select(v-model="filter.zentaoProject",clearable,value="",placeholder="版本纬度",filterable)el-option(v-for="item in zentaoProjectList",:key="item.id" :label="item.projectName", :value="item.id")
3、nginx设置代理

查看nginx地址

~ which nginx
/usr/local/bin/nginx
➜  ~ cd /usr/local/bin/bin nginx -t
nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok
nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
➜  bin

通过nginx的不同端口代理多个地址,修改配置文件nginx.conf

server {listen       9527;server_name  localhost;#此处定义映射规则,所有加了apis的接口,全部转发到8002端口号,就是本地的django工程location /apis/ {proxy_pass   http://localhost:8002/;}}

重启nginx代理

nginx -s reload
4、试试前端通过nginx代理能不能访问到后台接口

在这里插入图片描述

这篇关于2、禅道数据看板(django+vue)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/962379

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

Python获取中国节假日数据记录入JSON文件

《Python获取中国节假日数据记录入JSON文件》项目系统内置的日历应用为了提升用户体验,特别设置了在调休日期显示“休”的UI图标功能,那么问题是这些调休数据从哪里来呢?我尝试一种更为智能的方法:P... 目录节假日数据获取存入jsON文件节假日数据读取封装完整代码项目系统内置的日历应用为了提升用户体验,

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Java利用JSONPath操作JSON数据的技术指南

《Java利用JSONPath操作JSON数据的技术指南》JSONPath是一种强大的工具,用于查询和操作JSON数据,类似于SQL的语法,它为处理复杂的JSON数据结构提供了简单且高效... 目录1、简述2、什么是 jsONPath?3、Java 示例3.1 基本查询3.2 过滤查询3.3 递归搜索3.4

MySQL大表数据的分区与分库分表的实现

《MySQL大表数据的分区与分库分表的实现》数据库的分区和分库分表是两种常用的技术方案,本文主要介绍了MySQL大表数据的分区与分库分表的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有... 目录1. mysql大表数据的分区1.1 什么是分区?1.2 分区的类型1.3 分区的优点1.4 分

Mysql删除几亿条数据表中的部分数据的方法实现

《Mysql删除几亿条数据表中的部分数据的方法实现》在MySQL中删除一个大表中的数据时,需要特别注意操作的性能和对系统的影响,本文主要介绍了Mysql删除几亿条数据表中的部分数据的方法实现,具有一定... 目录1、需求2、方案1. 使用 DELETE 语句分批删除2. 使用 INPLACE ALTER T

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

Redis 中的热点键和数据倾斜示例详解

《Redis中的热点键和数据倾斜示例详解》热点键是指在Redis中被频繁访问的特定键,这些键由于其高访问频率,可能导致Redis服务器的性能问题,尤其是在高并发场景下,本文给大家介绍Redis中的热... 目录Redis 中的热点键和数据倾斜热点键(Hot Key)定义特点应对策略示例数据倾斜(Data S

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方