脚手架 如果您想创建一个新项目,您可以使用scaffold来快速启动。 ##help $ httprunner startproject -h usage: httprunner startproject [-h] [project_name] positional arguments: proje ...
分类:
Web程序 时间:
2020-11-27 11:38:22
阅读次数:
14
MySQL过滤复制 一、几个配置文件说明 写在配置文件,重启就行 主库配置: show master status; Binlog_Do_DB #白名单 Binlog_Ignore_DB #黑名单,添加在这里的库。就不进行复制 从库配置: 从库: 库级别: replicate do db=world ...
分类:
数据库 时间:
2020-11-26 14:49:16
阅读次数:
40
源码: <?php show_source(__FILE__); $username = "admin"; $password = "password"; include("flag.php"); $data = isset($_POST['data'])? $_POST['data']: "" ; ...
分类:
Web程序 时间:
2020-11-25 13:04:51
阅读次数:
25
基本 show([s,[e],[fn]]) hide([s,[e],[fn]]) toggle([s],[e],[fn]) 滑动 slideDown([s],[e],[fn]) slideUp([s,[e],[fn]]) slideToggle([s],[e],[fn]) 淡入淡出 fadeIn([ ...
分类:
Web程序 时间:
2020-11-24 13:03:47
阅读次数:
23
Mysql性能优化 一、概述 当我们想查看Mysql的状况的话,通过linux系统,我们可以这样 1、先查看所有的镜像。 docker ps -a 2、docker exec -it mysql bash进入 容器bash,就可以操作了。 常规的调优手段 3、show processlist(查看链 ...
分类:
数据库 时间:
2020-11-23 12:41:54
阅读次数:
55
1 2 3 4 5 6 7 8 9 10 F9 resume programe 恢复程序 Alt+F10 show execution point 显示执行断点 F8 Step Over 相当于eclipse的f6 跳到下一步,逐过程,不进入方法 F7 Step Into 相当于eclipse的f5 ...
分类:
其他好文 时间:
2020-11-23 12:23:41
阅读次数:
3
sql优化 一、概述 数据库优化主要有两个方向:即安全与性能 show processlist(查看链接session状态) explain(分析查询计划),show index from table(分析索引) 通过执行计划判断,索引问题(有没有、合不合理)或者语句本身问题 show status ...
分类:
数据库 时间:
2020-11-23 11:47:54
阅读次数:
50
/** *求两个已知经纬度之间的距离,单位为米 *@param lng1,lng2 经度 *@param lat1,lat2 纬度 *@return float 距离,单位米 **/ function getdistance($lng1,$lat1,$lng2,$lat2){ //将角度转为狐度 $ ...
分类:
Web程序 时间:
2020-11-21 12:06:44
阅读次数:
18
1、show index form table; #Table: 表名 #Non_unique :是否为unique index,0-是,1-否。 #Key_name:索引名称 #Seq_in_index:索引中的顺序号,单列索引-都是1;复合索引-根据索引列的顺序从1开始递增。 #Column_n ...
分类:
数据库 时间:
2020-11-20 12:23:36
阅读次数:
33
v-show不能在<template>上使用 <button v-on:click="warn('Form cannot be submitted yet.', $event)">Submit</button> // ... methods: { warn: function (message, e ...
分类:
Web程序 时间:
2020-11-20 11:58:10
阅读次数:
15