`
文章列表
在bootstrap-table.min.js中搜索 "limit"===this.options.queryParamsType&& 找到下面的代码片段: "limit"===this.options.queryParamsType&&(i={search:i.searchText,sort:i.sortName,order:i.sortOrder},this.options.pagination&&(i.offset=this.options.pageSize===this.options.format ...
全球影像 http://t0.tianditu.cn/img_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=img&tileMatrixSet=w&TileMatrix={z}&TileRow={y}&TileCol={x}&style=default&format=tiles 全球中文注记 http://t0.tianditu.cn/cia_w/wmts?service=wmts&request=GetTile&version=1.0 ...

jQuery常用API

$("[name=replaytitle]").is(":hidden")  显示状态判断;
https://repo.spring.io/webapp/#/artifacts/browse/tree/General/libs-release-local/org/springframework/spring
@RequestMapping(value = "createmenu", method = RequestMethod.GET) @ResponseBody public static String createmenu() { String srcPath = PropertyUtil.getClassPath(); Map<String, String> properties = PropertyUtil.getAll(srcPath + "/properties", PropertyUtil.WECHAT_FILE) ...
$(".weui_uploader_files li").click(function(e) { var thisPath = webRoot + $(this).attr("path"); var lis = $(this).siblings(); var imgs = new Array(); for (i = 0; i < lis.length; i++) { var photoPath = lis[i].getAttribute("path"); imgs.push( ...
老大说这配置太麻烦、每个调度都需要多加在spring的配置中、 能不能减少配置的量从而提高开发效率、 最近看了看spring的 scheduled的使用注解的方式进行调度、 感觉很方便、起码配置的东西少了很多、 所以留下来以备忘了、 首先要配置我们的spring.xml xmlns 加入 xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation 加入 http://www.springframework.org/schema/task http://www. ...
import java.util.Calendar; import java.util.GregorianCalendar; public class calendarTest { public static void main(String[] args) { Calendar calendar=Calendar.getInstance(); System.out.println( "现在是:"+ calendar.g ...
function formValidator() { $("#edit_form").bootstrapValidator({ // message: 'This value is not valid', feedbackIcons : { valid : 'glyphicon glyphicon-ok', invalid : 'glyphicon glyphicon-remove', validating : 'glyphicon glyphicon-refresh' }, fields : { passwor ...
function Search() {         var name= $('#txtName').val();         var pass= $('#txtPass').val();         var options = $('#table').bootstrapTable('refresh', {             query:             {                 Name:name,                 Pass:pass             }         });     }
//easyui 格式化日期控件 $("#contract_begin").datebox({ required: "true", missingMessage: "必填项", editable: false, formatter: function (date) { var y = date.getFullYear(); var m = date.getMonth() + 1; ...
数据据导出 mongodump -h 192.168.5.101 --port 27017 -u sappu -p sappu_029 -d rhdb -o d:/a 数据库导入 mongorestore -h 192.168.5.6 --port 27017 -u sappu -p sappu_029 -d rhdb d:/a/rhdb
_id和ObjectId MongoDB中存储的文档必须有一个"_id"键。这个键的值可以是任何类型的,默认是个ObjectId对象。 在一个集合里面,每个集合都有唯一的"_id"值,来确保集合里面每个文档都能被唯一标识。如果有 两个集合的话,两个集合可以都有一个值为"123"的"_id"的键,但是每个集合里面只能有一个"_id" 是123的文档。 1.ObjectId ObjectId是"_id"的默认类型。它设计成轻量型的,不同的机器都能用全局唯一的同种方法方便 ...
主要介绍Android及IPhone手机上如何进行网络数据抓包,比如我们想抓某个应用(微博、微信、墨迹天气)的网络通信请求就可以利用这个方法。 相对于tcpdump配合wireshark抓包的优势在于:(1)无需root (2)对Android和Iphone同样适用 (3)操作更简单方便(第一次安装配置,第二次只需设置代理即可) (4)数据包的查看更清晰易懂,Fiddler的UI更简单明了 (5) 可以查看https请求。如果你坚持使用tcpdump也可见:利用tcpdump和wireshark抓取网络数据包。 PS:需要1台PC做辅助,且PC需要与手机在同一局域网内或有独立公网ip ...
方法一: 最多人使用的一个方法, 直观, 方便, 但效率很低:                                     if(s == null ||"".equals(s)); 方法二: 比较字符串长度, 效率高, 是我知道的最好一个方法:                       if(s == null || s.length() <= 0); 方法三: Java SE 6.0 才开始提供的方法, 效率和方法二几乎相等, 但出于兼容性考虑, 推荐使用方法二.                      if(s == null || s.isEmp ...
Global site tag (gtag.js) - Google Analytics