window下安装: 1.到官网上下载mysql(zip包) 》①mysql的bin目录下新建my.ini文件,配置参考如下: 》②path中配置好环境变量 》③以管理员身份运行mysql服务 mysql --install 安装服务,控制台会提示:Service successfully inst ...
分类:
数据库 时间:
2021-06-06 18:54:05
阅读次数:
0
Spring Boot 文档 1.关于文档 Spring Boot 参考指南可以通过以下方式获得: Multi-page HTML Single page HTML PDF 最新的版本可以在docs.spring.io/spring-boot/docs/current/reference/找到。 2 ...
分类:
编程语言 时间:
2021-06-06 18:52:05
阅读次数:
0
(function f1() { var num = 10; window.num = num;})(); console.log(num); ...
分类:
Web程序 时间:
2021-06-05 18:35:46
阅读次数:
0
这个例子的完整源代码: import { Component, OnInit, Injectable, Injector } from '@angular/core'; @Injectable() class UsefulService { constructor(){ console.log("U ...
// 检查是否已有读写麦克风的权限 bool status = await Permission.microphone.isGranted; //判断如果还没拥有麦克风权限就申请获取权限 if (!status) { return await Permission.microphone.reques ...
分类:
其他好文 时间:
2021-06-05 18:10:53
阅读次数:
0
1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永久关闭防火墙 systemctl disable firew ...
分类:
系统相关 时间:
2021-06-05 17:51:23
阅读次数:
0
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:
系统相关 时间:
2021-06-04 19:47:34
阅读次数:
0
前言 为啥写这篇? 因为听 grep、sed 教程的时候有这个命令栗子 加上工作中,运维给我排查问题的时候也用到了,感觉挺重要,先了解为敬! 命令作用 显示用户和TTY的最后登录次数 啥是 TTY 终端(Terminal) =TTY 语法格式 last [-n] [-h host] [-t tty] ...
分类:
系统相关 时间:
2021-06-04 19:33:37
阅读次数:
0
1、在浏览器中的console输入 document.getElementById('xiaoyou-robot-wrapper').style='display:none' 隐藏页面图标 2、 在浏览器中的console输入 document.getElementById('xiaoyou-rob ...
分类:
其他好文 时间:
2021-06-04 19:18:19
阅读次数:
0
总算到了 PHP 的拿手好戏上场了,前面我们学习过 Bzip2 、 LZF 、 Phar 和 rar 这些压缩相关扩展在 PHP 中的使用,不过它们要么是太冷门,要么就是很多功能不支持。而 Zip 则是在 PHP 中得到最大幅度功能支持的热门压缩格式,或者说是通用常见的一种压缩格式。当然,也主要得益 ...
分类:
Web程序 时间:
2021-06-04 19:13:31
阅读次数:
0