class Www: def __init__(self,name): self.name=name def __str__(self): return '名称 %s'%self.name #__repr__=__str__ *这是在__str__转换__repr__函数的偷懒小方法 #__str_ ...
分类:
编程语言 时间:
2020-04-03 22:12:51
阅读次数:
93
应用场景 在开发“发送短信验证”功能时候,要解决一个问题,防止恶意或频繁发送短信验证码问题。一般原理是“当点击发送按钮时,发送ajax请求到服务器发送短信验证码,成功则把发送按钮设置为不可点击,并且调用定时器,按钮显示倒计时”。如果就这样不对倒计时存储做处理,那么当刷新页面,会出现倒计时失效,按钮可 ...
分类:
其他好文 时间:
2020-04-03 16:25:23
阅读次数:
62
代码如下: 1 #include <stdio.h> 2 #include <pthread.h> 3 #include <sched.h> 4 #include <assert.h> 5 6 static int api_get_thread_policy(pthread_attr_t *attr ...
分类:
编程语言 时间:
2020-04-03 12:03:58
阅读次数:
69
大家都知道disabled属性用来禁用表单里的元素。如果让你来禁用一个表单元素,你会怎么做么,下面提供几种写法,各位看官请看 html: <button type='button'>test</button> var btn=document.querySelector('button'); 1. ...
分类:
其他好文 时间:
2020-04-01 00:32:22
阅读次数:
81
原文:收藏 | 15 个你非了解不可的 Linux 特殊字符,妈妈再也不用担心我看不懂这些符号了! 不知道大家接触 Linux 系统有多久了,可曾了解过 Linux 中有哪些特殊的字符呢?其实啊,那些特殊字符都大有用处呢,今天的文章就给大家简单地科普一下 Linux 中你需要了解的 15 个特殊字符... ...
分类:
系统相关 时间:
2020-03-31 14:19:59
阅读次数:
158
Bundling and Minification Debugging Bundled and Minified JavaScript It's easy to debug your JavaScript in a development environment (where the compila ...
分类:
其他好文 时间:
2020-03-31 14:14:21
阅读次数:
70
简介 一直不理解函数式编程,其实就像deeplearning 一样 知难行易。一般人使用的多的,不会太难; Example ...
分类:
编程语言 时间:
2020-03-31 12:06:44
阅读次数:
72
https://blog.csdn.net/MR_L_0927/article/details/84784482 简单的方法是 直接在Controller内的接口参数前加上校验注解(@NotBlank...等),此时需在类上加注解 @Validated即可.当校验参数过多,这种方法使接口参数看起来过 ...
分类:
编程语言 时间:
2020-03-31 10:40:47
阅读次数:
177
attr方法用的是原生js中的getAttribute和setAttribute; prop方法相当于直接用.或者[]来访问/修改dom元素的属性, 所以它俩的区别相当于问原生js中的getAttribute和直接.来修改属性有什么区别: <input type="text" zs="user"> ...
分类:
Web程序 时间:
2020-03-31 09:13:40
阅读次数:
79
环境: IP 角色 软件 192.168.1.131 proxy-server nginx 192.168.1.124:8080 Tomcat1 tomcat 192.168.1.124:8081 Tomcat2 tomcat 192.168.1.124:8082 Tomcat3 tomcat 19 ...
分类:
其他好文 时间:
2020-03-30 16:23:15
阅读次数:
60