从零开始,构建电子地图网站:0_16_VUE打包合并到后端

本文主要是介绍从零开始,构建电子地图网站:0_16_VUE打包合并到后端,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

我们要先把vue打包,合并到spring boot中,然后打包后端工程,统一上线。

 

一、vue配置抽出

因为打包之后,文件都会混在一起,就很难修改了,所以要先把可能会修改的配置提取出来,再进行打包。

我们把请求后端的url提取出来。

1.config.js

在static中新建config.js文件。

uploading.4e448015.gif转存失败重新上传取消

 

window.g = {

    BASE_URL: 'http://localhost:8081/history/geometry?'

}

 

2.index.html

修改vue-gismap/index.html文件,引入config.js。

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8">

    <meta name="viewport" content="width=device-width,initial-scale=1.0">

    <script type="text/javascript" src="/static/config.js"></script>

    <title>vue-gismap</title>

  </head>

  <body>

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

    <!-- built files will be auto injected -->

  </body>

</html>

 

 

3.HistoryMap.vue

var urlbase = window.g.BASE_URL;

 

 

二、打包

  1. 修改config/index.js

将bulid下的assetsPublicPath: '/',改为assetsPublicPath: './',。

'use strict'

// Template version: 1.3.1

// see http://vuejs-templates.github.io/webpack for documentation.

 

const path = require('path')

 

module.exports = {

  dev: {

 

    // Paths

    assetsSubDirectory: 'static',

    assetsPublicPath: '/',

    proxyTable: {},

 

    // Various Dev Server settings

    host: 'localhost', // can be overwritten by process.env.HOST

    port: 8082, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined

    autoOpenBrowser: false,

    errorOverlay: true,

    notifyOnErrors: true,

    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-

 

   

    /**

     * Source Maps

     */

 

    // https://webpack.js.org/configuration/devtool/#development

    devtool: 'cheap-module-eval-source-map',

 

    // If you have problems debugging vue-files in devtools,

    // set this to false - it *may* help

    // https://vue-loader.vuejs.org/en/options.html#cachebusting

    cacheBusting: true,

 

    cssSourceMap: true

  },

 

  build: {

    // Template for index.html

    index: path.resolve(__dirname, '../dist/index.html'),

 

    // Paths

    assetsRoot: path.resolve(__dirname, '../dist'),

    assetsSubDirectory: 'static',

    assetsPublicPath: './',

 

    /**

     * Source Maps

     */

 

    productionSourceMap: true,

    // https://webpack.js.org/configuration/devtool/#production

    devtool: '#source-map',

 

    // Gzip off by default as many popular static hosts such as

    // Surge or Netlify already gzip all static assets for you.

    // Before setting to `true`, make sure to:

    // npm install --save-dev compression-webpack-plugin

    productionGzip: false,

    productionGzipExtensions: ['js', 'css'],

 

    // Run the build command with an extra argument to

    // View the bundle analyzer report after build finishes:

    // `npm run build --report`

    // Set to `true` or `false` to always turn it on or off

    bundleAnalyzerReport: process.env.npm_config_report

  }

}

 

 

2.npm run build

运行npm run bulid,报错:

 

building for production...Error processing file: static/css/app.40775b4bfe6e59fc37d0361042e9ab75.css

(node:8320) UnhandledPromiseRejectionWarning: CssSyntaxError: D:\gismap\qianduan\vue-gismap\static\css\app.40775b4bfe6e59fc37d0361042e9ab75.css:22:6: Unknown word

 

打包css的时候发现unknown word。

 

我的css都是按照标准写的,为什么会打包出错?

经过排查发现,在App.vue中,我修改了全局的滚动条样式。

/*更改全局的滚动条样式*/

::-webkit-scrollbar {

  width: 8px;

  height: 8px;

  background-color: #fff;

}

 

::-webkit-scrollbar-thumb {

  // border-radius:5px;

  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);

  background-color: rgba(0, 0, 0, .1)

}

查了一下webkit,发现在网站上写了:

该特性是非标准的,请尽量不要在生产环境中使用它!

我的错!不能引用非标准的样式!注释掉!

 

再运行npm run build。

在vue-gismap文件夹下多出了一个dist文件夹,这个就是打包生成的文件,把它放到后端程序中。

 

  1. 合并入springboot

在..\gismap\src\main\resources下新建一个文件夹static。把dist文件夹中的内容拷贝到static中。

uploading.4e448015.gif转存失败重新上传取消

 

三、运行测试

运行..\gismap\src\main\java\com\history\gismap\GismapApplication.java

 

访问页面:

http://localhost:8081/index.html#/

结果如图,有些瑕疵,首先复选框上面有多余的一块,其次复选框列表的图标没出来。

uploading.4e448015.gif转存失败重新上传取消

我们修改下:

首先在HistoryMap.vue组件中,给左侧栏加一个绝对的top坐标,top:60px,这个是遗漏项。

 

    <div style="background-color: #fff; height: 100vh;width: 15%;position:absolute;left:0px;top: 60px">

      <el-scrollbar style="height: 100%;">

        <el-tree :data="treedata" show-checkbox node-key="id" :props="defaultProps" @check="changecheck">

        </el-tree>

      </el-scrollbar>

    </div>

 

其次在build/webpack.base.conf.js中修改图标打包的limit值,把它改大点,由原来的10000,改成80000。

 

      {

        test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,

        loader: 'url-loader',

        options: {

          limit: 80000,

          name: utils.assetsPath('fonts/[name].[hash:7].[ext]')

        }

      }

 

重新打包下,npm run build,将打包结果dist文件夹中的内容拷贝到后台static文件夹中,重新启动下工程。

 

访问页面:

http://localhost:8081/index.html#/

 

uploading.4e448015.gif转存失败重新上传取消

 

 

完美!

 

四、git

 

将前后端程序都更新一下。

后端git:

https://github.com/yimengyao13/gismap.git

分支:merge

前端git:

https://github.com/yimengyao13/vue-gismap.git

分支:merge

 

 

 

接下来该做的就是部署了。

 

 

 

这篇关于从零开始,构建电子地图网站:0_16_VUE打包合并到后端的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

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

这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

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

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

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

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

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

springboot3打包成war包,用tomcat8启动

1、在pom中,将打包类型改为war <packaging>war</packaging> 2、pom中排除SpringBoot内置的Tomcat容器并添加Tomcat依赖,用于编译和测试,         *依赖时一定设置 scope 为 provided (相当于 tomcat 依赖只在本地运行和测试的时候有效,         打包的时候会排除这个依赖)<scope>provided

Retrieval-based-Voice-Conversion-WebUI模型构建指南

一、模型介绍 Retrieval-based-Voice-Conversion-WebUI(简称 RVC)模型是一个基于 VITS(Variational Inference with adversarial learning for end-to-end Text-to-Speech)的简单易用的语音转换框架。 具有以下特点 简单易用:RVC 模型通过简单易用的网页界面,使得用户无需深入了

day-51 合并零之间的节点

思路 直接遍历链表即可,遇到val=0跳过,val非零则加在一起,最后返回即可 解题过程 返回链表可以有头结点,方便插入,返回head.next Code /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode() {}*

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能