摘要: 官网地址:https://aieditor.com.cn/zh 第一步安装: 安装: npm i aieditor vue2使用 <el-card class="box-card"> <div ref="divRef" style="height: 600px" /> <button @click= 阅读全文
posted @ 2025-01-02 11:11 李笑吅 阅读(725) 评论(1) 推荐(0)
摘要: 1.安装 npm install -g @vue/cli 2.查看版本 vue -V 3.使用 3.1 命令形式 vue create my-project 3.2可视化操作 阅读全文
posted @ 2024-12-16 10:22 李笑吅 阅读(170) 评论(0) 推荐(0)
摘要: npm install --save node-cron cron.schedule('* * * * * *', () => { console.log('running a task every minute'); }); * * * * * *┬ ┬ ┬ ┬ ┬ ┬│ │ │ │ │ ││ │ 阅读全文
posted @ 2024-09-08 21:24 李笑吅 阅读(134) 评论(0) 推荐(0)
摘要: 1.第三方插件安装 2.搜索并安装 3.购买免费次数1天100次 https://fuwu.weixin.qq.com/service/detail/000ce4cec24ca026d37900ed551415 4.选中使用的账号 5.支付完成愉快使用 6.正式使用 文档位置:https://mp. 阅读全文
posted @ 2024-08-13 13:37 李笑吅 阅读(265) 评论(0) 推荐(0)
摘要: 1.本文借鉴一下内容参考 新版宝塔项目部署:https://www.bt.cn/bbs/thread-76217-1-1.html 采用Tomcat8的方式部署 1.下载jenkins 去清华大学开源镜像网站:https://mirrors.tuna.tsinghua.edu.cn/jenkins/ 阅读全文
posted @ 2024-06-27 15:26 李笑吅 阅读(439) 评论(0) 推荐(0)
摘要: const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, lintOnSave: false, devServer:{ // 跨域 阅读全文
posted @ 2024-06-04 17:02 李笑吅 阅读(27) 评论(0) 推荐(0)
摘要: /* 文字溢出*/ overflow: hidden; /*是否显示省略号*/ text-overflow: ellipsis; /*white-space: nowrap;*/ /*多行文本溢出*/ display: -webkit-box; -webkit-line-clamp:1;/*代表行数 阅读全文
posted @ 2024-03-16 14:06 李笑吅 阅读(25) 评论(0) 推荐(0)
摘要: 上面这种格式的发送方式可以采用 URLSearchParams对象的方式代码如下 var arrlist = [1,2,3]var newdata = new URLSearchParams()for(var i=0; i< arrlist.length; i++){ newdata.append( 阅读全文
posted @ 2024-02-28 16:00 李笑吅 阅读(43) 评论(0) 推荐(0)
摘要: // 七牛直传 // 1.获取七牛直传的token uni.request({ url:'http://192.168.0.58:3301/qiniu/token?id=5&key=643ouy123', success: (res) => { console.log(res.data.token) 阅读全文
posted @ 2023-11-06 16:10 李笑吅 阅读(45) 评论(0) 推荐(0)
摘要: //移除旧的样式 let html = data.goods_desc.replace(/<img[^>]*>/gi, (match, capture)=> { match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/g 阅读全文
posted @ 2023-10-23 16:27 李笑吅 阅读(311) 评论(0) 推荐(0)