错误集锦
我劳动我光荣
suguoduan
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【ESP32S2 编译问题集锦】
ESP32编译错误原创 2022-11-03 15:35:51 · 850 阅读 · 0 评论 -
【springboot+vue3 腾讯服务器Ubuntu18.04部署问题】
1、提示找不到CSS 原因是调用了httts链接的图标库,在服务器上无法向外网获取对应的css。编译的CSS内找不到数据。 解决:删除对应的外链css引用,改为本地,再编译。 2、无法连接数据库 原因是数据库版本与本地版本不同,最好使用相同版本,因为不同版本命令有较大差异。建议使用8.x版本 3、不显示界面,axios本地跨域访问的是http//localhost:8080/dir,不跨域访问/dir ,服务器需把localhost改为对应的ip或者网址 ...原创 2022-05-19 08:38:57 · 253 阅读 · 0 评论 -
【springboot解决跨域问题】 Access-Control-Allow-Origin
增加一个类 package com.example.demo.csdn; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configur原创 2022-04-22 14:38:47 · 837 阅读 · 1 评论
分享