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

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

大模型研发全揭秘:客服工单数据标注的完整攻略

在人工智能(AI)领域,数据标注是模型训练过程中至关重要的一步。无论你是新手还是有经验的从业者,掌握数据标注的技术细节和常见问题的解决方案都能为你的AI项目增添不少价值。在电信运营商的客服系统中,工单数据是客户问题和解决方案的重要记录。通过对这些工单数据进行有效标注,不仅能够帮助提升客服自动化系统的智能化水平,还能优化客户服务流程,提高客户满意度。本文将详细介绍如何在电信运营商客服工单的背景下进行

基于MySQL Binlog的Elasticsearch数据同步实践

一、为什么要做 随着马蜂窝的逐渐发展,我们的业务数据越来越多,单纯使用 MySQL 已经不能满足我们的数据查询需求,例如对于商品、订单等数据的多维度检索。 使用 Elasticsearch 存储业务数据可以很好的解决我们业务中的搜索需求。而数据进行异构存储后,随之而来的就是数据同步的问题。 二、现有方法及问题 对于数据同步,我们目前的解决方案是建立数据中间表。把需要检索的业务数据,统一放到一张M

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

关于数据埋点,你需要了解这些基本知识

产品汪每天都在和数据打交道,你知道数据来自哪里吗? 移动app端内的用户行为数据大多来自埋点,了解一些埋点知识,能和数据分析师、技术侃大山,参与到前期的数据采集,更重要是让最终的埋点数据能为我所用,否则可怜巴巴等上几个月是常有的事。   埋点类型 根据埋点方式,可以区分为: 手动埋点半自动埋点全自动埋点 秉承“任何事物都有两面性”的道理:自动程度高的,能解决通用统计,便于统一化管理,但个性化定

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

异构存储(冷热数据分离)

异构存储主要解决不同的数据,存储在不同类型的硬盘中,达到最佳性能的问题。 异构存储Shell操作 (1)查看当前有哪些存储策略可以用 [lytfly@hadoop102 hadoop-3.1.4]$ hdfs storagepolicies -listPolicies (2)为指定路径(数据存储目录)设置指定的存储策略 hdfs storagepolicies -setStoragePo

Hadoop集群数据均衡之磁盘间数据均衡

生产环境,由于硬盘空间不足,往往需要增加一块硬盘。刚加载的硬盘没有数据时,可以执行磁盘数据均衡命令。(Hadoop3.x新特性) plan后面带的节点的名字必须是已经存在的,并且是需要均衡的节点。 如果节点不存在,会报如下错误: 如果节点只有一个硬盘的话,不会创建均衡计划: (1)生成均衡计划 hdfs diskbalancer -plan hadoop102 (2)执行均衡计划 hd

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06