摘要: 问题:php报错。 业务场景:使用update语句去更新数据库字段。 原因:update接收值不正确。 原代码: $query = "UPDATE student SET date = now() WHERE id = $id"; $result = $mysqli->query($query2) 阅读全文
posted @ 2023-04-14 23:47 叶乘风 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 前言:uniapp input之输入手机号需要进行间隔显示。即18800188001显示成188 0018 8001。 部分代码如下: // 间隔函数formatPhone(val) { if (val) { if (this.inputPhoneValue.replace(/\s/g, "").l 阅读全文
posted @ 2023-04-14 20:20 叶乘风 阅读(47) 评论(0) 推荐(0) 编辑
摘要: before 在元素前,after在元素之后,使用: .or::before { width: 100px; height: 1px; background: #000; display: block; content: ''; } .or::after { width: 100px; height 阅读全文
posted @ 2023-04-14 16:47 叶乘风 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 问题描述:首次导入uniapp的uni-popup,在项目中使用时报错,业务场景为:页面渲染完成后显示弹窗。 报错:Error in config.errorHandler: "RangeError: Maximum call stack size exceeded" config.errorHan 阅读全文
posted @ 2023-04-14 16:10 叶乘风 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 新建一个vue文件,随便写点什么,然后在main.js中引入,如下: xxx.vue: <template> <view class="container"> <view class="content"> 登录窗口 </view> </view> </template> <script> expor 阅读全文
posted @ 2023-04-14 15:09 叶乘风 阅读(13) 评论(0) 推荐(0) 编辑