摘要: 最新谷歌浏览器打不开https的解决方法 总之是握手失败升级nginx1.2.4 openssl1.1.1 就可以了 阅读全文
posted @ 2024-05-21 17:08 newmiracle宇宙 阅读(104) 评论(0) 推荐(0) 编辑
摘要: nginx -with--openssl make报错解决方法 ## 若报错 /opt/nginx-1.18.0]# make make -f objs/Makefile make[1]: Entering directory `/opt/nginx-1.18.0' cd /usr/local/op 阅读全文
posted @ 2024-05-21 09:49 newmiracle宇宙 阅读(152) 评论(0) 推荐(0) 编辑
摘要: uniapp 高德地图 sha 生成方法 https://dev.dcloud.net.cn/ 找到对应的应用就能找到 阅读全文
posted @ 2024-03-25 21:36 newmiracle宇宙 阅读(8) 评论(0) 推荐(0) 编辑
摘要: hbuilder 如果app真机调试不行的话 那就电脑上下载个adb 然后运行下adb devices 看看有没有手机连接上 阅读全文
posted @ 2023-12-19 09:27 newmiracle宇宙 阅读(22) 评论(0) 推荐(0) 编辑
摘要: phpstudy apache跨域访问设置 Header add Access-Control-Allow-Origin * Header add Access-Control-Allow-Methods * Header add Access-Control-Allow-Headers "Orig 阅读全文
posted @ 2023-10-13 11:04 newmiracle宇宙 阅读(137) 评论(0) 推荐(0) 编辑
摘要: centos mount 装载到已有文件的文件夹方法 先新建个文件夹 然后装载 cp上去 然后 再unmount 卸载 把原来的删掉 重命名 再重新装载就好了 阅读全文
posted @ 2023-07-25 21:05 newmiracle宇宙 阅读(31) 评论(0) 推荐(0) 编辑
摘要: huilder 无法调试微信小程序方法 npx browserslist@latest --update-db​14:20:29.948 项目 'test11' 编译成功。前端运行日志,请另行在小程序开发工具的控制台查看。14:20:29.953 正在启动微信开发者工具...14:20:30.328 阅读全文
posted @ 2023-07-19 14:29 newmiracle宇宙 阅读(77) 评论(0) 推荐(0) 编辑
摘要: git 撤销git add 或者 git commit的方法 git reset HEAD^ 有时候 合并完分支 如果想撤销commit 可以用 还有方法 合并不提交 然后再清楚暂存区就好了 一般用这个方法比较好 git merge --squash test git reset 其他未提交的代码可 阅读全文
posted @ 2023-06-11 11:34 newmiracle宇宙 阅读(33) 评论(0) 推荐(0) 编辑
摘要: git回退版本的方法 git revert HEAD 先把代码本地备份好 然后回退 然后再把代码放上去 比较靠谱 阅读全文
posted @ 2023-06-05 17:09 newmiracle宇宙 阅读(9) 评论(0) 推荐(0) 编辑
摘要: PHP二维数组分组 $result = []; foreach ($prize_list as $item) { $id = $item['id']; if (!isset($result[$id])) { $result[$id] = []; } $result[$id][] = $item; } 阅读全文
posted @ 2023-05-26 17:28 newmiracle宇宙 阅读(62) 评论(0) 推荐(0) 编辑