问题解决
记录开发中遇到的问题以及解决的方法
冬久久
这个作者很懒,什么都没留下…
展开
-
解决electron iu进程跨域问题
使用 Electron 内置的网络请求钩子方法修改HTTP Header,在发出 HTTP 请求前,修改请求的 HTTP Header,在其中加入 Origin: ‘’;在收到 HTTP 回复后,修改回复的 HTTP Header,在其中加入 ‘Access-Control-Allow-Origin’: ['’]window.webContents.session.webRequest.onBeforeSendHeaders( (details, callback) => {原创 2022-05-18 15:25:21 · 1218 阅读 · 0 评论 -
TypeError: loaderContext.getOptions is not a function
TypeError: loaderContext.getOptions is not a function原创 2022-05-05 15:06:19 · 5942 阅读 · 3 评论 -
electron优化笔记
electron优化笔记,启动缓慢优化原创 2022-04-24 11:55:40 · 1954 阅读 · 0 评论 -
nextjs+antd+prisma开发记录
项目中包含了jwt、权限校验、markdown编辑器、react hooks、antd ui、prisma orm、Typescript等运用;完整项目代码:https://github.com/bfclouds/nextjs-blog,这是我学习nextjs服务端渲染的简单blog项目,适合准备学习nextjs的新手学习;原创 2022-04-10 22:24:15 · 616 阅读 · 0 评论 -
nextjs data类型序列化报错
Reason: `object` ("[object Date]") cannot be serialized as JSON. Please only return JSON serializable data types原创 2022-04-07 14:57:58 · 959 阅读 · 0 评论 -
Hydration failed because the initial UI does not match what was rendered on the server
Hydration failed because the initial UI does not match what was rendered on the server原创 2022-04-03 17:21:54 · 2473 阅读 · 4 评论 -
es module中使用__dirname
__dirname is not defined in ES module scope原创 2022-03-30 20:15:58 · 2577 阅读 · 0 评论 -
swiper6填坑:vue-awesome-swiper
swiper6填坑:vue-awesome-swiper1.引入cssswiper6的css变了位置import 'swiper/swiper-bundle.css'2.err swiper not drfined在项目中使用了vue-awesome-swiper,在已引用的情况下报错:"Error in mounted hook: “ReferenceError: Swiper is not defined”,仔细查看错误提示,“ at src/components/card/cardLa原创 2020-07-31 21:55:14 · 3319 阅读 · 0 评论