摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>背景拖动< 阅读全文
posted @ 2025-09-18 14:49 浊浊然 阅读(9) 评论(0) 推荐(0)
摘要: 背景是一张大图,显示区域窗口小时,需要拖动查看,游戏地图的简单实现 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device 阅读全文
posted @ 2025-09-04 16:43 浊浊然 阅读(6) 评论(0) 推荐(0)
摘要: npm config set sass_binary_site https://mirrors.huaweicloud.com/node-sass/ 或 npm config set sass_binary_site https://registry.npmmirror.com/node-sass/ 阅读全文
posted @ 2024-04-18 16:18 浊浊然 阅读(41) 评论(0) 推荐(0)
摘要: npm install anywhere -g npm install http-server -g anywhere 和 http-server 都可以简单启动一个本地服务器 阅读全文
posted @ 2024-04-12 15:37 浊浊然 阅读(26) 评论(0) 推荐(0)
摘要: 1.正常部署https访问(已在小程序后台配置域名) 2.如果还是调不通,访问 https://myssl.com/ 对htts网址进行检测 小程序需要A级以上才能正常调用 3.如果达不到A级,需要访问 https://myssl.com/chain_download.html 修复证书链 4.修复 阅读全文
posted @ 2024-01-08 14:36 浊浊然 阅读(1598) 评论(0) 推荐(0)
摘要: UPDATE table SET `field`=REPLACE(`field`,' ','');UPDATE table SET `field`=REPLACE(REPLACE(REPLACE(REPLACE(`field`,CHAR(13),''),CHAR(10),''),CHAR(9),'' 阅读全文
posted @ 2023-03-30 12:32 浊浊然 阅读(46) 评论(0) 推荐(0)
摘要: 切换子系统(可获取子系统中配置的权限) /js/a/switch/defaultxx(这会返回302重定向到 /js/a/index),这里使用jquery的普通ajax,不要使用promise,无法拿到302返回也就不再去请求/js/a/index 当配置https后,302会转到http去请求( 阅读全文
posted @ 2023-02-10 17:02 浊浊然 阅读(99) 评论(0) 推荐(0)
摘要: 打包的apk后缀改为zip,解压后里面进入/META-INF目录,有个CERT.RSA文件 使用命令 keytool -printcert -file CERT.RSA 即可查看sha1 地图平台中需要sha1这个值,或得对应的key 阅读全文
posted @ 2022-12-10 20:35 浊浊然 阅读(60) 评论(0) 推荐(0)
摘要: Building for production...Error: error:0308010C:digital envelope routines::unsupported 先执行以下命令: windows: set NODE_OPTIONS openssl-legacy-provider linu 阅读全文
posted @ 2022-11-06 13:39 浊浊然 阅读(1976) 评论(0) 推荐(0)
摘要: let params = (new URL(document.location)).searchParams; const code = params.get('code'); 阅读全文
posted @ 2022-08-30 21:38 浊浊然 阅读(40) 评论(0) 推荐(0)