这个时候要重写url规则 在根目录的.htaccess文件下添加如下代码 <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d ...
分类:
Web程序 时间:
2020-10-16 10:26:39
阅读次数:
25
这篇文章主要介绍了python调用摄像头的示例代码,帮助大家更好的理解和使用python,感兴趣的朋友可以了解下 一、打开摄像头 import cv2 import numpy as np def video_demo(): capture = cv2.VideoCapture(0)#0为电脑内置摄 ...
分类:
编程语言 时间:
2020-10-13 17:33:24
阅读次数:
33
常用的三种方式: while read linedoecho $linedone < filename(待读取的文件) cat filename(待读取的文件) | while read linedoecho $linedone for line in `cat filename(待读取的文件)`d ...
分类:
系统相关 时间:
2020-10-12 20:17:26
阅读次数:
25
###题目 First Missing Positive ###解题方法 题意是从1开始按顺序找(1,2,3,...),找到第一个数组中没有的数,返回。 题意要求时间复杂度O(n),空间复杂度O(1),先用python自带的O(logn)的Timsort排序,设置一个missingnum变量,表示从 ...
分类:
其他好文 时间:
2020-10-12 20:14:24
阅读次数:
21
什么是<a>标签? <a> 标签定义超链接,用于从一个页面链接到另一个页面。 <a> 元素最重要的属性是 href 属性,它指定链接的目标。 a标签的语法格式:<a href="指定要跳转的目标界面的链接">需要展示给用户看见的内容</a> <a href="http://www.baidu.com ...
分类:
其他好文 时间:
2020-10-12 20:11:13
阅读次数:
24
# firewall-cmd --help Usage: firewall-cmd [OPTIONS...] General Options -h, --help Prints a short help text and exists -V, --version Print the version ...
分类:
其他好文 时间:
2020-10-10 18:08:39
阅读次数:
40
open函数理解 open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) mode模式 合法mode:r、rb、r+、rb+、w、wb、w+、wb+ ...
分类:
其他好文 时间:
2020-10-10 17:51:26
阅读次数:
21
1.判断是否存在 判断文件夹是否存在 if [ -d "/data/" ];then echo "文件夹存在" else echo "文件夹不存在" fi 判断文件是否存在 if [ -f "/data/filename" ];then echo "文件存在" else echo "文件不存在" f ...
分类:
系统相关 时间:
2020-09-24 22:15:17
阅读次数:
100
snake_case被称为蛇形命名法,一般是用来命名变量名称的,snakecase要求短语内的各个单词或缩写之间以(下划线)做间隔,如user_name,snakecaseetc.camelCase被称为驼峰命名法,也是一种变量命名规则。camelCase要求第一个单词首字母小写,后面单词首字母大写,例如:fileName、lineNumber,camelCaseetc.最后再说一次,你们这个文本
分类:
其他好文 时间:
2020-09-23 23:37:47
阅读次数:
37
spring boot项目中报此错误,可能的原因是 在GetMapping中没有指定参数名 @GetMapping("/verifyLogin") public HttpResult verifyLogin(@PathVariable("token") String token) 正确的应该是: @ ...
分类:
编程语言 时间:
2020-09-18 03:34:26
阅读次数:
47