摘要: cut() { let imgReg = /<img.*?(?:>|\/>)/gi //匹配图片中的img标签 let srcReg = /src=[\'\"]?([^\'\"]*)[\'\"]?/i // 匹配图片中的src let str = this.minidata.content//数据源 阅读全文
posted @ 2021-11-16 14:58 zhangPooo 阅读(620) 评论(0) 推荐(0) 编辑
摘要: 不多bb,直接先贴代码,反正我是能用的,如果不能用的话就改改,改改后还不能用就不能用吧。 <template> <view class="undone-order"> <view :style="mainStyle"> <view style="height: 400rpx;width: 100%; 阅读全文
posted @ 2021-11-13 18:55 zhangPooo 阅读(1358) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-11-04 16:30 zhangPooo 阅读(287) 评论(0) 推荐(0) 编辑
摘要: /** * 二维数组根据某个字段排序 * @param array $array 要排序的数组 * @param string $keys 要排序的键字段 * @param string $sort 排序类型 SORT_ASC SORT_DESC * @return array 排序后的数组 */ 阅读全文
posted @ 2021-10-23 14:20 zhangPooo 阅读(16) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2021-09-28 17:39 zhangPooo 阅读(1504) 评论(0) 推荐(0) 编辑
摘要: 微信小程序默认值是'content-type': 'application/json' ,你需要改成'content-type': 'application/x-www-form-urlencoded' 阅读全文
posted @ 2021-09-26 09:53 zhangPooo 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 重新设置 数据库 sql_mode 即可 (譬如sql_mode='') 阅读全文
posted @ 2021-09-23 20:20 zhangPooo 阅读(43) 评论(0) 推荐(0) 编辑
摘要: SELECT DISTINCT 字段 FROM 表 WHERE xxx 阅读全文
posted @ 2021-07-30 16:19 zhangPooo 阅读(25) 评论(0) 推荐(0) 编辑
摘要: strlen() 函数返回字符串的长度,中文字符串的处理使用 mb_strlen() 函数 分割中文文字需要使用 mb_substr() 阅读全文
posted @ 2021-06-11 17:30 zhangPooo 阅读(101) 评论(0) 推荐(0) 编辑
摘要: vue语法 >Vue.$set(Obj,'key',value) 本文来自:http://t.zoukankan.com/netWild-p-12326982.html 阅读全文
posted @ 2021-03-09 17:38 zhangPooo 阅读(1960) 评论(0) 推荐(0) 编辑