### 移动端 基于flex布局 的默认样式 rest css ; ```
*,::before,::after { padding: 0; margin: 0; outline: none; -webkit-tap-highlight-color: transparent; }
/* 所有元素的盒... ...
分类:
移动开发 时间:
2020-10-12 20:37:17
阅读次数:
32
Java代码在执行时一旦被编译器编译为机器码,下一次执行的时候就会直接执行编译后的代码,也就是说,编译后的代码被缓存了起来。缓存编译后的机器码的内存区域就是CodeCache。 这是一块独立于java堆之外的内存区域。除了JIT编译的代码之外,java所使用的本地方法代码(JNI)也会存在CodeC ...
分类:
其他好文 时间:
2020-10-08 18:12:29
阅读次数:
19
1.背景 线上服务器偶尔报错如下: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying ...
分类:
其他好文 时间:
2020-09-24 21:51:23
阅读次数:
47
一、TypeScript 是什么 TypeScript 是一种由微软开发的自由和开源的编程语言。它是 JavaScript 的一个超集,而且本质上向这个语言添加了可选的静态类型和基于类的面向对象编程。 TypeScript 提供最新的和不断发展的 JavaScript 特性,包括那些来自 2015 ...
分类:
Web程序 时间:
2020-09-24 21:24:58
阅读次数:
59
Curl命令在linux操作系统中经常来测试网络和url的联通性,模拟正常的网络访问,当然除了这个作用之外,作为y一款强大的工具,curl还支持包括HTTP、HTTPS、ftp等众多协议,还支持POST、cookies、认证、从指定偏移处下载部分文件等功能 1.curl -I选项,只获得对方的响应首 ...
分类:
Web程序 时间:
2020-09-18 17:27:27
阅读次数:
88
Converting any HTML template into a Django template The normal way Any HTML, CSS, JS or BootStrap template can be converted into a Django compatible t ...
分类:
Web程序 时间:
2020-09-18 02:57:40
阅读次数:
47
#多个装饰器装饰一个函数 def wraper1(func): def inner1(): print('wraper1 before func') func() print('wraper1 after func') return inner1def wraper2(func): def inne ...
分类:
其他好文 时间:
2020-09-17 22:23:08
阅读次数:
18
问题报错内容: ImportError: 'testCase' module incorrectly imported from 'E:\\Auto_code\\ui-and-api\\apiautotest-master\\testCase'. Expected 'E:\\Auto_code\\u ...
分类:
其他好文 时间:
2020-09-17 21:43:35
阅读次数:
45