摘要: Docker 安装与使用的步骤 Docker的安装 安装docker参考 菜鸟教程|Docker https://www.runoob.com/docker/centos docker install.html 配置镜像加速 阿里云加速 https://blog.csdn.net/weixin_40 阅读全文
posted @ 2019-07-04 09:45 巴达克 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 话不多讲,直接捞干的 想恢复误操作的数据直接打开这个链接就ok https://github.com/danfengcao/binlog2sql 纳尼? 竟然没成功 如果你把链接里面的示例 没搞成功 没有关系啦 请看下面(如果你还没打开链接 就直接看了 我表示: ) 重要的事情说三遍 binlog_ 阅读全文
posted @ 2019-07-02 18:06 巴达克 阅读(141) 评论(0) 推荐(0) 编辑
摘要: from_unixtime(time_stamp) 将时间戳转换为日期 unix_timestamp(date) 将指定的日期或者日期字符串转换为时间戳 阅读全文
posted @ 2019-07-02 15:22 巴达克 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 关于进程和线程,想要了解一个东西,必须知道ta的历史(产生的原因) 发展的过程。 传送门 https://blog.csdn.net/weixin_41247813/article/details/81603445 阅读全文
posted @ 2019-06-12 22:47 巴达克 阅读(73) 评论(0) 推荐(0) 编辑
摘要: Nginx跨域配置 vue为前端 有跨域问题 在php代码中配置了允许跨域,使用GET或POST访问后端,没有问题 但是在前端添加请求头访问时 就会有跨域问题。这时就必须在服务器中配置允许跨域了。 · location / { if ($request_method = 'OPTIONS') { a 阅读全文
posted @ 2019-05-06 10:49 巴达克 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 在Vue中 使用MUI滚动插件 官方文档地址:http://dev.dcloud.net.cn/mui/ui/ scroll 示例:初始化scroll控件: mui('.mui scroll wrapper').scroll({ deceleration: 0.0005 //flick 减速系数,系 阅读全文
posted @ 2019-04-30 21:52 巴达克 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 今天遇到Vue 使用 axios post请求后台数据时 404 使用postman 就能获取到 网上找了大半天 终于找到了解决方法,传送门:https://www.jianshu.com/p/b10454ed38ba 阅读全文
posted @ 2019-04-26 22:50 巴达克 阅读(3570) 评论(0) 推荐(0) 编辑
摘要: CentOS6 安装node 使用node v 是报错 ./node: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory 解决 阅读全文
posted @ 2018-11-22 16:05 巴达克 阅读(258) 评论(0) 推荐(0) 编辑
摘要: RewriteEngine on RewriteCond %{REQUEST_FILENAME} ! d RewriteCond %{REQUEST_FILENAME} ! f RewriteRule ^(. )$ index.php [L,E=PATH_INFO:$1] 阅读全文
posted @ 2018-10-10 17:02 巴达克 阅读(1383) 评论(0) 推荐(0) 编辑
摘要: php实现Iterator接口 对手册中的案例进行分析 class myIterator implements Iterator { private $position = 0; private $array = array( "firstelement",//7、遍历第一个元素 "secondel 阅读全文
posted @ 2018-03-07 19:52 巴达克 阅读(158) 评论(0) 推荐(0) 编辑