上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页
摘要: 首先,不要觉得会是很恢复数据库是很高深的技术,只要日志文件还在,就能恢复! 所谓恢复,就是让mysql将保存在binlog日志中指定段落区间的sql语句逐个重新执行一次而已,而mysqlbinlog就是把日志转成SQL语句的一个工具而已。 所谓恢复,就是让mysql将保存在binlog日志中指定段落 阅读全文
posted @ 2022-04-21 22:04 张志健 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 首先引入tree use fast\Tree; 使用 // 必须将结果集转换为数组 $ruleList = collection($this->model->order('weigh', 'desc')->select())->toArray(); unset($v); Tree::instance 阅读全文
posted @ 2022-03-24 10:37 张志健 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 由于www用户和root用户(比如command的cli进程日志)都有可能对log文件进行读写。 如果是由www用户创建的log文件,不会出任何问题。 但是如果是先由root用户创建的log文件,然后再到www用户角色去写,就会出问题了 因为一般默认创建的log文件的权限是 -rw-r--r- 也就 阅读全文
posted @ 2022-03-10 11:45 张志健 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 文件:thinkphp/library/think/Log.php /** * [payLog 添加日志log1] * @param [type] $mark [备注] * @param [type] $log_content [内容] * @param string $keyp [名] * @re 阅读全文
posted @ 2022-03-10 11:42 张志健 阅读(340) 评论(0) 推荐(0) 编辑
摘要: #当前位置经纬度 经度:117.215637 纬度:39.1373367 #表中经纬度字段 经度:longitude 纬度:latitude select * from( SELECT id,longitude,latitude, ROUND(6378.138*2*ASIN(SQRT(POW(SIN 阅读全文
posted @ 2022-02-11 21:39 张志健 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 让输入框只能输入正整数 <input type='text' onkeyup="value=value.replace(/^(0+)|[^\d]+/g,'')"> 让输入框只能输入带小数点的数值 <input type="text" name="operate" class="layui-input 阅读全文
posted @ 2021-08-16 16:38 张志健 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 前言 在项目开发中使用git进行代码的管理,每次完成更改上传代码后,还需要登录服务器将代码拉取下来.现在git服务器(gitee/gitlab/github)都会有Webhooks功能,以实现在向git仓库推送/合并等时机让服务器自动拉取新代码. 流程说明 使用Webhooks后,整个上传部署流程如 阅读全文
posted @ 2021-05-19 11:23 张志健 阅读(462) 评论(0) 推荐(0) 编辑
摘要: <template> <view class='radarContainer'> <canvas class='radarCanvas' canvas-id='radarCanvas'></canvas> </view> </template> <script> var numCount = 3; 阅读全文
posted @ 2021-05-10 21:54 张志健 阅读(2955) 评论(0) 推荐(0) 编辑
摘要: 在开发uniApp应用时,我们会用上一些自己的函数库和配置,这时我们就要新建一个公用的common.js引入。 module.exports ={ apiHost:"https://www.deituicms.com", getAuthCode:function(){ var authcode=un 阅读全文
posted @ 2021-05-10 21:47 张志健 阅读(2154) 评论(0) 推荐(0) 编辑
摘要: 找到对应的js public/assets/js/backend/user/user.js table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'weigh',/ 阅读全文
posted @ 2021-05-08 20:53 张志健 阅读(4515) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页