csrf与xss攻击的详解与区别
CSRF:跨站请求伪造登录受信任网站A,并在本地生成Cookie,在不登出A的情况下,访问危险网站B。其实是利用了网站A的漏洞如何防御:Token 验证(用的最多)隐藏令牌:把token隐藏在http的head头中R...
springboot配置mysql5和mysql8的差异
mysql5驱动不同:com.mysql.jdbc.Driverspring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus spring.datasource.user...
Mac下彻底删除IDEA
应用程序中删除idea应用open ~/Library/Caches/JetBrains/ 删除有关idea的文件夹删除 /Users/jsjxsz/Library/Logs/ 下面的所有 idea 的文件夹删除 /Users/jsjxsz/Library/Preferences/ 下...
mac安装git
homebrew安装gitbrew install git设置信息//设置个自己的用户名和邮箱 git config --global user.name 'NAME' git config --global user.email '********@qq.com'SSH配置//修改为自己的邮箱地址...
宝塔面板的安装及常用命令
Linux面板7.9.2安装脚本Centos安装脚本yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh ed8484becUbuntu/Deepin安...
element Input 输入框
基础用法<el-input v-model='input' placeholder='请输入内容'></el-input> <script> export default { data() { return { input: '' } } } </script>禁用状态通过 di...
element Icon图标
直接通过设置类名为 el-icon-iconName 来使用即可。<i class='el-icon-edit'></i> <i class='el-icon-share'></i> <i class='el-icon-delete'></i> <...
element按钮基础用法
使用type、plain、round和circle属性来定义 Button 的样式<el-row> <el-button>默认按钮</el-button> <el-button type='primary'>主要按钮</el-button> <el...
thinkphp5分组查询统计
//获取今天开始、结束时间 $where_day['createtime'] = [ ['egt',strtotime(date('Y-m-d',time()))], ['lt',strtotime(date('Y-m-d',time())).'+1 day'] ]; //获取本周开始、结束时间 $where_we...
安装PostgreSQL (Mac安装)
下载dmg文件https://www.enterprisedb.com/downloads/postgres-postgresql-downloads安装,基本一路next打开终端# 14是刚才安装的对应的版本号 /Library/PostgreSQL/14/scripts/runpsql.sh ;exi...