封装原生js ajax函数 function ajax(type,url,data,callback){ var xhr = XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP") if(typeo ...
分类:
Web程序 时间:
2019-11-15 20:03:16
阅读次数:
113
package com.macro.cloud;import com.macro.cloud.domain.User;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.boot.test. ...
分类:
其他好文 时间:
2019-11-08 19:00:53
阅读次数:
111
RESTful API最佳实践 RESTful API 概述 基本概念 REST 英文全称:Representational State Transfer,直译为:表现层状态转移。首次是由 "Roy Thomas Fielding" 在他2000年的 "博士论文" 中提出。 REST是一种描述网络中 ...
强制每个单词的首字母转换为大写。text-transform: capitalize;强制所有字符被转换为大写 text-transform: uppercase;强制所有字符被转换为小写 text-transform: lowercase;阻止所有字符的大小写被转换 text-transform: ...
分类:
Web程序 时间:
2019-10-29 11:45:16
阅读次数:
90
"Longest Palindrome" Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built wit ...
分类:
其他好文 时间:
2019-10-27 20:41:43
阅读次数:
92
对象 为什么要有对象 什么是对象 JavaScript中的对象 事物的特征在对象中用属性来表示。 事物的行为在对象中用方法来表示。 事物的特征在对象中用属性来表示。 事物的行为在对象中用方法来表示。 对象字面量 字面量:11 'abc' true [] {}等 思考: 对象创建方式 对象字面量 对象 ...
分类:
Web程序 时间:
2019-10-16 19:36:09
阅读次数:
140
描述 There is a matrix only contains uppercase letters. Try to find a word in this matrix. You can go toward four directions (top, bottom, left, right), ...
分类:
其他好文 时间:
2019-10-09 21:20:45
阅读次数:
142
在日常开发测试中,可能需要测试SQL执行性能,但是一般在开发环境中不存在测试所需的数据,因为生产环境的数据是有法律效益的,非法获取会触犯法律。 所以在平时的工作中只能自己根据数据标准造数据,为了避免重复编写造数脚本,编写了一个通用Python脚本。 脚本保存为.py文件即可执行。 ...
分类:
编程语言 时间:
2019-10-08 14:19:09
阅读次数:
103
CSS通过设置input输入框的style来实现。 text-transform: uppercase /转为大写/ text-transform: lowercase /转为小写/ text-transform: capitalize /单词首字母转为大写/ js: toUpperCase() ...
分类:
Web程序 时间:
2019-10-07 13:03:24
阅读次数:
129
在Java中对一个空对象进行操作时,便会抛出最常见的异常NullPointerException。为了改善这个问题,Java 8中提供了一个java.util.Optional<T>类型。Optional类的Javadoc描述如下:这是一个可以为null的容器对象。如果值存在则isPresent() ...
分类:
编程语言 时间:
2019-10-05 20:16:40
阅读次数:
95