Referrer-Policy: no-referrer——不显示Referrer的任何信息在请求头中。 Referrer-Policy: no-referrer-when-downgrade——这是默认值。当从https网站跳转到http网站或者请求其资源时(安全降级HTTPS→HTTP),不显示 ...
分类:
其他好文 时间:
2020-12-02 12:15:04
阅读次数:
2
监听 js 动态 修改 input value 事件 方案1 function customInputSetter(){ var descriptor = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, "value"); va ...
分类:
编程语言 时间:
2020-12-02 12:06:03
阅读次数:
6
原SQL语句:(execution: 2 s 28 ms, fetching: 25 ms) explain select pr.cid, case when pr.type = 2 then ac.auto_cancel else ca.auto_cancel end auto_cancel, p ...
分类:
数据库 时间:
2020-12-01 12:38:30
阅读次数:
19
java beans specification 9 customization When a user is composing an application in an application builder we want to allow them tocustomize the appea ...
分类:
编程语言 时间:
2020-11-30 15:28:01
阅读次数:
7
Linux配置NTP时间同步 一、ntp和ntpdate区别 两个服务都是centos自带的(centos7中不自带ntp)。ntp的安装包名是ntp;ntpdate的安装包是ntpdate。他们并非由一个安装包提供。 ntp守护进程为ntpd,配置文件是/etc/ntp.conf ntpdate用 ...
分类:
系统相关 时间:
2020-11-21 12:39:54
阅读次数:
16
最近在sql使用中,发现 case when 的功能相当强大。 可以根据现有字段定义新的字段,可以对新字段进行排序等等。 下面简单举例说明。 用来测试的数据表内容如下: mysql> select * from test_student; + + + + + + | id | name | age ...
分类:
数据库 时间:
2020-11-20 11:53:29
阅读次数:
10
本文对try-with-resources语法进行了较为深入的剖析,验证了其为一种语法糖,同时给出了其实际的实现方式的反编译结果,相信你在看完本文后,关于AutoCloseable的使用你会有新的收获。
分类:
编程语言 时间:
2020-11-13 12:29:50
阅读次数:
6
原因:出现这个问题是因为sql语句中使用除法,但除数存在为0的情况下导致的,如下图: 解决办法: --使用case when 排除为0的情况 (CASE WHEN T1.CALC_WEIGHT > 0 THEN NVL(T1.FIRST_TRANSFER_FEE / T1.CALC_WEIGHT, ...
分类:
其他好文 时间:
2020-11-08 17:03:17
阅读次数:
21
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-0.htmlMySQL8.0.0The current maximum auto-increment counter value is now written to the redo l ...
分类:
数据库 时间:
2020-11-08 16:51:42
阅读次数:
24
E Nothing is eternal in the world, Kostya understood it on the 7-th of January when he saw partially dead four-color garland. Now he has a goal to rep ...
分类:
其他好文 时间:
2020-11-02 10:34:31
阅读次数:
23