Ext.define('Ext.ux.form', { extend: 'Ext.form.Panel', listeners: { 'beforeadd': function(){ if (!field.allowBlank) { field.labelClsExtra = 'x-required ...
分类:
Web程序 时间:
2021-06-02 12:56:45
阅读次数:
0
@mixin 指令允许我们定义一个可以在整个样式表中重复使用的样式。 @include 指令可以将混入(mixin)引入到文档中。 1.@mixin定义一个混入 混入(mixin)通过 @mixin 指令来定义。 @mixin name { property: value; property: va ...
分类:
其他好文 时间:
2021-06-02 12:50:57
阅读次数:
0
基于Redisson的分布式锁。 使用apollo的addChangeListener方法监听配置。 Redis Pttl 命令以毫秒为单位返回 key 的剩余过期时间。pexpire 以毫秒为单位设置 key 的生存时间Psetex 命令以毫秒为单位设置 key 的生存时间 1、通过以下方法创建r ...
分类:
其他好文 时间:
2021-06-02 12:48:39
阅读次数:
0
变量是指可以变化的量 JAVA变量是程序中最基本的存储单元,其要素包括变量名,变量类型和作用域 type varName [=value] [{,varName[=value]}]; //数据类型 变量名=值;可以使用逗号隔开来声明多个同类型变量 类变量 //Static 实例变量 //String ...
分类:
其他好文 时间:
2021-06-02 12:46:47
阅读次数:
0
Given a hash table of size N, we can define a hash function H(x)=x%N. Suppose that the linear probing is used to solve collisions, we can easily obtai ...
分类:
其他好文 时间:
2021-06-02 12:19:23
阅读次数:
0
考虑先做一个$O(n^2) 的 dp$ $f[i][j]$表示在$i$的子树中,距离当前点为$j$的点数 $g[i][j]$表示在$i$的子树中,两个点$lca$的距离为$d$,他们的$lca$到$i$距离为$d - j$的点对数。 那么怎么转移? \(ans += g[i][0],ans += g ...
分类:
其他好文 时间:
2021-06-02 12:14:22
阅读次数:
0
jQuery 的折叠动画 + jQuery 提供了三种折叠动画 ( 看之前参考一下13 ) 1. slideDown() + 下拉显示 2. slideUp() + 上拉隐藏 3. slideToggle() + 切换显示和隐藏 三个方法都是一样的参数 => 方法名(时间, 运动曲线, 回调函数) ...
分类:
Web程序 时间:
2021-06-02 12:04:11
阅读次数:
0
1.修改远程访问限制: 修改webapps/manager/META-INF/context.xml和webapps/host-manager/META-INF/context.xml,在<Context>下<Value>属性,可看到allow属性,它用正则表达式表示,默认仅允许本机访问,例如可修改 ...
分类:
其他好文 时间:
2021-06-02 12:03:01
阅读次数:
0
You can't specify target table '表名' for update in FROM clause (来源) 翻译为:不能先select出同一表中的某些值,再update这个表(在同一语句中) 解决办法:将SELECT出的结果再通过中间表SELECT一遍 UPDATE res ...
分类:
数据库 时间:
2021-06-02 11:37:21
阅读次数:
0
1、 #include <stdio.h> void put(char x[], int n) { while(n-- > 0) printf(x); putchar('\n'); } int main(void) { char str[128]; int n; printf("str: "); s ...
分类:
编程语言 时间:
2021-06-02 11:11:52
阅读次数:
0