failed to register layer: devmapper:Thin Pool has 207894 free data blocks which is less than minimum required 320123 free data blocks. Create more fre ...
分类:
其他好文 时间:
2021-02-01 11:44:12
阅读次数:
0
H5 通过 input 获取本地图片后上传服务器是,图片大小会极大的耗费网络,和服务器资源,所以此时我们就要对上传的图片进行压缩后上传compress(file) { if (file.file && (file.file.size > 1024*1024*.3)){ // 设置文件压缩的阈值 le ...
分类:
Web程序 时间:
2021-01-30 11:56:13
阅读次数:
0
难度1-Low 查看代码: <?php // Is there any input? if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) { // Feedback for end user echo '<pre>He ...
分类:
其他好文 时间:
2021-01-29 11:44:05
阅读次数:
0
验证器类:Validate.php <?php namespace framework\library; class Validate { /** * 当前验证规则 * @var array */ protected $rule = []; /** * 验证提示信息 * @var array */ ...
分类:
Web程序 时间:
2021-01-28 11:58:59
阅读次数:
0
模型的元数据,指的是“除了字段外的所有内容”,例如排序方式、数据库表名、人类可读的单数或者复数名等等。所有的这些都是非必须的,甚至元数据本身对模型也是非必须的。但是,我要说但是,有些元数据选项能给予你极大的帮助,在实际使用中具有重要的作用,是实际应用的‘必须’。 想在模型中增加元数据,方法很简单,在 ...
分类:
Web程序 时间:
2021-01-27 13:39:19
阅读次数:
0
经过排查,发现是下图的错误 报错显示,el-input输入框绑定的值需要是String或者Number类型的,但是我这里绑定的是Boolean值! 其实我的业务就是Boolean的,只不过一开始想先把页面快速弄出来,然后再把输入框改成Switch开关的 这样就没问题了。 ...
分类:
其他好文 时间:
2021-01-27 13:36:01
阅读次数:
0
前言 由于我安装时选择的是英文最小安装,导致缺失了中文软件支持。解决办法: sudo apt install ibus-pinyin 那么问题来了,什麼是ibus? iBus & Fcitx iBus Intelligent Input Bus,简称IBus,是 Unix-like 操作系统下的多语 ...
分类:
系统相关 时间:
2021-01-26 11:50:30
阅读次数:
0
Input: intervals = [[1,3],[2,6],[8,10],[15,18]] Output: [[1,6],[8,10],[15,18]] Explanation: Since intervals [1,3] and [2,6] overlaps, merge them into ...
分类:
其他好文 时间:
2021-01-25 11:29:04
阅读次数:
0
1.父域页面(a.html):act/msg/evalStr 为自定义属性 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <input type ...
分类:
其他好文 时间:
2021-01-25 11:20:46
阅读次数:
0
Stream主要用于序列化地数据处理(read or write input into output sequentially),比如文件读写,网络数据传输, 或任何端到端的数据交换。Stream在处理数据的时候,与传统方式有所不同,传统方式是把数据作为一个整体进行处理,而stream则是把数据分割 ...
分类:
Web程序 时间:
2021-01-25 11:16:01
阅读次数:
0