上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: $("input[type*=text]").each(function(){ var oldValue=$(this).val(); $(this).focus(function(){ if($(this).val()==oldValue){ $(this).val(''); } }) .blur 阅读全文
posted @ 2022-07-04 01:03 悬剑丶 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 去除严格分组限制即可 修改Mysql配置文件 [mysqld]sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUB 阅读全文
posted @ 2022-03-17 12:27 悬剑丶 阅读(48) 评论(0) 推荐(0) 编辑
摘要: SQL语句调试 DB::enableQueryLog(); SQL语句 dd(DB::getQueryLog()); with语句拼接 $this->with(['cureMedicines' => function ($query) use ($id) { $query->select('pati 阅读全文
posted @ 2022-02-24 23:45 悬剑丶 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 已知: 用户经纬度:$lat,$lon 数据库经纬度字段:d_lat,d_lon 工具函数 //注意替换数据库经纬度字段值//入参为用户经纬度,as_name为距离字段别名 public function get_distance_sql($lat, $lng, $as_name = 'distan 阅读全文
posted @ 2021-12-28 17:31 悬剑丶 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 开启转发 wx.showShareMenu({ withShareTicket: true, //shareAppMessage 发送朋友 shareTimeline发送朋友圈 menus: ['shareAppMessage', 'shareTimeline'] }) 自定义转发内容 onShar 阅读全文
posted @ 2021-12-27 16:05 悬剑丶 阅读(441) 评论(0) 推荐(0) 编辑
摘要: const accountInfo = wx.getAccountInfoSync(); console.log(accountInfo) switch (accountInfo.miniProgram.envVersion) { case 'develop': console.log('开发版') 阅读全文
posted @ 2021-12-13 15:57 悬剑丶 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 一维数组 array_unique() 二维数组 $uniqueList = [];foreach($List as $k => $v) { if (!isset($uniqueList[$v['_id']])) { $uniqueList[$v['_id']] = $v; }}$uniqueLis 阅读全文
posted @ 2021-12-07 16:27 悬剑丶 阅读(95) 评论(0) 推荐(0) 编辑
摘要: cls @ECHO OFF title Folder Private if EXIST "HTG Locker" goto UNLOCK if NOT EXIST Private goto MDLOCKER :CONFIRM echo 你确定要加密隐藏Private文件夹吗?(Y/N) set/p 阅读全文
posted @ 2021-11-30 16:00 悬剑丶 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 安装 composer require topthink/think-migration 创建迁移文件 php think migrate:create TableName 执行迁移文件 up:在migrate:run时执行(前提是文件中不存在change方法) down:在migrate:roll 阅读全文
posted @ 2021-11-12 16:51 悬剑丶 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 进入cmd控制台 wmic memorychip 属性 标签 容量 说明 锁定速度 电压 类型 位宽 描述 定位 Attributes BankLabel Capacity Caption ConfiguredClockSpeed ConfiguredVoltage CreationClassNam 阅读全文
posted @ 2021-11-10 16:41 悬剑丶 阅读(2449) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页