字符串: ${value?if_exists} 判断: <#if "${value}"=="是/否"> <w:t>是</w:t><#else> <w:t>否</w:t></#if>或者: <#if "${value}"?contains("是/否")> <w:t>是</w:t><#else> <w: ...
分类:
其他好文 时间:
2020-06-23 15:43:28
阅读次数:
63
比较操作符 __gt 大于__gte 大于等于__lt 小于__lte 小于等于__in__exact 精确等于 like 'aaa'__iexact 精确等于 忽略大小写 ilike 'aaa'__contains 包含 like '%aaa%'__icontains 包含 忽略大小写 ilike ...
分类:
其他好文 时间:
2020-06-21 19:30:52
阅读次数:
52
starts-with 顾名思义,匹配一个属性开始位置的关键字 contains 匹配一个属性值中包含的字符串 text() 匹配的是显示文本信息,此处也可以用来做定位用 eg //input[starts-with(@name,'name1')] 查找name属性中开始位置包含'name1'关键字 ...
分类:
其他好文 时间:
2020-06-21 13:32:00
阅读次数:
45
The set [1,2,3,...,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, we get the following seque ...
分类:
其他好文 时间:
2020-06-21 10:13:55
阅读次数:
48
// 打印所有 function onAllButtonClick() { $("#print div div:contains('项目号:')").html('项目号:' + F.ui.lbItem_no.getText()); $("#print div div:contains('内部合同号: ...
分类:
Web程序 时间:
2020-06-20 18:52:53
阅读次数:
386
对于MySQL的一些个规范,某些公司建表规范中有一项要求是所有字段非空,意味着没有值的时候存储一个默认值。其实所有字段非空这么说应该是绝对了,应该说是尽可能非空,某些情况下不可能给出一个默认值。那么这条要求,是基于哪些考虑因素,存储空间?相关增删查改操作的性能?亦或是其他考虑?该理论到底有没有道理或 ...
分类:
数据库 时间:
2020-06-20 16:27:28
阅读次数:
236
1. 两数之和 本题可以有两种方法,一种先排序,再用双指针法找到两数。另一种利用哈希表存储值对应的下标,如果在表中找到target-nums[i]对应的值,则直接输出 Java class Solution { public int[] twoSum(int[] nums, int target) ...
分类:
其他好文 时间:
2020-06-17 01:48:53
阅读次数:
65
题目: Given a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only the digits 0 and 1. Y ...
分类:
其他好文 时间:
2020-06-16 12:50:35
阅读次数:
58
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:
编程语言 时间:
2020-06-16 12:46:45
阅读次数:
64
https://docs.docker.com/docker-for-windows/troubleshoot/ This page contains information on how to diagnose and troubleshoot problems, send logs and co ...
分类:
其他好文 时间:
2020-06-15 13:44:07
阅读次数:
90