随笔分类 - 前端
vue+el+js
摘要:显示错误如下 解决办法 vite.config.js 中添加配置,配置'@'的别名 import { fileURLToPath, URL } from 'node:url' // https://vitejs.dev/config/ export default defineConfig({ re
阅读全文
摘要:需求 : 工厂员工完成某道工序后,需要将消息推送给 检查人员 也可以使用 WebSockets ,前端更容易实现 思路: 使用activeMQ推送消息,前端实时接收消息 实现 : 1.基于springBoot的activeMQ 实现起来比较方便 配置文件如下 ############ activem
阅读全文
摘要:html代码 扫码后跳转到百度 <html> <head> <title>QRCode</title> </head> <script src="qrcode.min.js"></script> </head> <body> <div id="qrcode"></div> <script type=
阅读全文
摘要:1.可以通过authentication-failure-url="/login.html?error=1" 前端接收参数,根据参数提示 错误 2.前端vue this.myName= window.location.href.split("?")[1].split("=")[1];/*接收来自重定
阅读全文
摘要:环境: vue.js 问题: 当添加评论时 重新查询数据刷新数据控制台异常Caused by: com.alibaba.fastjson.JSONException: syntax error, expect {, actual [, pos 0, fastjson-version 1.2 解决 c
阅读全文