会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
weijiaying
博客园
首页
新随笔
联系
订阅
管理
2025年10月11日
vue3实现抓拍并上传
摘要: <template> <video ref="videoRef" autoplay playsinline></video> <canvas ref="canvasRef" class="hidden"></canvas> <button @click="capture">抓拍</button> <
阅读全文
posted @ 2025-10-11 11:47 冥·紫月
阅读(2)
评论(0)
推荐(0)
2025年9月26日
小皮PHP连接数据库提示could not find driver
摘要: 源文档:https://blog.csdn.net/nnmmbb/article/details/143707543 网上查了说把php.ini里的这几个配置打开,但不起作用 extension=mysqliextension=pdo_mysqlextension=pdo_odbc 使用phpinf
阅读全文
posted @ 2025-09-26 18:05 冥·紫月
阅读(12)
评论(0)
推荐(0)
2025年1月10日
Linux下查看Mysql数据库端口号的方法
摘要: mysql -u root -p mysql> show variables like 'port'; + + + | Variable_name | Value | + + + | port | 3306 | + + + 1 row in set (0.00 sec)
阅读全文
posted @ 2025-01-10 14:37 冥·紫月
阅读(23)
评论(0)
推荐(0)
2025年1月6日
文件上传(ruoyi若依框架)
摘要: <a class="input-file input-fileup" href="javascript:;"> + 选择文件<input size="100" type="file" @change="uploadFile"> </a> function uploadFile(event) { co
阅读全文
posted @ 2025-01-06 15:50 冥·紫月
阅读(748)
评论(0)
推荐(0)
2025年1月2日
layui框架中利用xm-select实现下拉多选功能,以及如何设置默认值
摘要: xm-select.js的下载地址:https://gitee.com/maplemei/xm-select/tree/master/dist 引入xm-select.js <script src="/static/tools/pear/component/pear/xm-select.js"></
阅读全文
posted @ 2025-01-02 14:02 冥·紫月
阅读(2761)
评论(0)
推荐(0)
2024年12月28日
vue项目中使用swiper轮播
摘要: 安装swiper npm install swiper@4 --save -dev npm install vue-awesome-swiper@3 --save-dev 使用swiper <template> <div class="swiper-container"> <swiper :opti
阅读全文
posted @ 2024-12-28 10:20 冥·紫月
阅读(67)
评论(0)
推荐(0)
2024年9月25日
php中使用FPDF生成PDF文件
摘要: 1.下载安装FPDF,可以在官网上下载(http://www.fpdf.org/),下载压缩包后解压,解压后的文件夹命名为“fpdf”。 2.创建一个php文件和“fpdf”平级,代码如下 <?php require('fpdf/fpdf.php'); $pdf = new FPDF(); $pdf
阅读全文
posted @ 2024-09-25 14:09 冥·紫月
阅读(643)
评论(0)
推荐(0)
2024年9月7日
扫码获取微信公众号用户的openid,向某个用户推送消息
摘要: 1. 生成二维码: 生成二维码比较简单的方法是直接使用phpqrcode程序包(可在网上下载得到)。 若想获得ThinkPHP支持,需将程序包放在ThinkPHP/Extend/Vendor目录下,让后在程序中引用,代码如下: vendor("phpqrcode.phpqrcode"); //要生成
阅读全文
posted @ 2024-09-07 17:08 冥·紫月
阅读(330)
评论(0)
推荐(0)
2024年9月3日
uniapp手机端和html中使用mqtt
摘要: 最近的项目用到了mqtt,我想了想,还是记下来吧,毕竟我也废了很长的时间在这个上面,首先是uniapp中使用mqtt,查阅了一些资料,前辈们都说使用3.0.0版本,于是我就下载了3.0.0版本的来使用 npm install mqtt@3.0.0 在mqtt连接之前要先引入 import mqtt
阅读全文
posted @ 2024-09-03 11:35 冥·紫月
阅读(1016)
评论(0)
推荐(0)
uniapp手机端页面滚动到最底部
摘要: 最近用uniapp开发一个类似于微信聊天功能的手机端软件,在进入聊天页面时要求页面滚动到最底部,刚开始使用了下面的代码: uni.createSelectorQuery().select("自己的容器.box").boundingClientRect((res)=>{ console.log(res
阅读全文
posted @ 2024-09-03 10:12 冥·紫月
阅读(1477)
评论(0)
推荐(0)
公告