POST http://localhost:7001/wms/inventory/query/ownerQuant.do Content-Type: application/json { "data":{ "criterias":{ "checkBoxOrg":"1", "qtMaterialId"... ...
分类:
其他好文 时间:
2017-02-23 18:36:54
阅读次数:
184
继承是在原有对象基础上,略作修改,得到一个新的对象,而不影响元有对象的功能。 添加加成的方法: 1.继承属性 call方法来继承属性,实现如下: //父类 function createPerson(name,age){ this.name=name; this.age=age; } functio ...
分类:
其他好文 时间:
2017-02-23 18:36:29
阅读次数:
133
- (void)viewDidLoad { [super viewDidLoad]; //初始化BMKLocationService _locService = [[BMKLocationService alloc]init]; _locService.delegate = self; //启动Lo ...
分类:
其他好文 时间:
2017-02-23 18:35:36
阅读次数:
263
DOM类型 Node类型: 常用类型: ? ? ?元素节点 ELEMENT_NODE ? ? ?属性节点 ATTRIBUTE_NODE ? ? ?文本节点 TEXT_NODE IE不支持节点类型常量名、兼容方案:123456if (typeof Node == 'undefined') { //IE ...
分类:
其他好文 时间:
2017-02-23 18:34:25
阅读次数:
166
maven仓库用过的人都知道,国内有多么的悲催。还好有比较好用的镜像可以使用,尽快记录下来。速度提升100倍。 http://maven.aliyun.com/nexus/#view-repositories;public~browsestorage 在maven的settings.xml 文件里配 ...
分类:
其他好文 时间:
2017-02-23 18:34:10
阅读次数:
161
光阴似箭,日月如梭,算算今日,也算是来北京两年了,从大四一个实习生到现在在一家业务比较成熟的公司,也不知道两年来学到了什么,总觉的心里空落落的,前端知识从来没有一个比较系统化总结,到现在项目中用到什么知识就去学习什么知识,也不知道在前端的这条路上还能走多久,最近腰病又犯了,今天换了新的工位,屋里不是 ...
分类:
Web程序 时间:
2017-02-23 18:33:28
阅读次数:
204
本篇部分摘抄至TD_时缔 VMware虚拟机下安装centosmini版本,安装后第一件事就是yum update 但是有错:cannot find a valid baseurl for repo base base 第一步:确认自己 能否联网 命令: ping g.cn 备注:( CTRL+C ...
分类:
其他好文 时间:
2017-02-23 18:32:14
阅读次数:
165
import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation... ...
分类:
其他好文 时间:
2017-02-23 18:31:51
阅读次数:
232
public void HttpDownloadFile(string url) { string strFileName = url.Substring(url.LastIndexOf("/")+1); // 设置参数 HttpWebRequest request = WebRequest.Cre... ...
ctrl+shift+F : search in whole project ctrl+hover : check the field info in brief ctrl+Q : check the field info in detail ctrl+P: show the parameter i ...
分类:
其他好文 时间:
2017-02-23 18:30:42
阅读次数:
200
find . -name "*.java" -type f find all the files within a director and its sub-directory ended with .java rm *~ delete all the files ended with ~ grep ...
分类:
其他好文 时间:
2017-02-23 18:29:28
阅读次数:
220
虚幻引擎支持很多的命令行命令和参数,你可以替换 ue4Editor-*.exe 或者 UE4-*.exe 你需要打开内置的其他配置项目。 ...
分类:
其他好文 时间:
2017-02-23 18:28:47
阅读次数:
626
http://logging.apache.org/log4j/2.x/faq.html#separate_log_files How do I reconfigure log4j2 in code with a specific configuration file? See the below ...
分类:
编程语言 时间:
2017-02-23 18:28:28
阅读次数:
308
修改profile etc/profile文件是只读的,直接用vi或gedit打开修改后是无法保存的。要修改profile,需要取得root权限,(使用gedit编辑) $sudo gedit /etc/profile 或者 $sudo -s $gedit /etc/profile 这样打开prof ...
分类:
其他好文 时间:
2017-02-23 18:25:15
阅读次数:
161
文章对Linux的启动过程 进行了讲解,摘录一些要点,(摘自:https://www.ibm.com/developerworks/cn/linux/l-linuxboot/)如下: 当系统首次引导时,或系统被重置时,处理器会执行一个位于已知位置处的代码。在个人计算机(PC)中,这个位置在基本输入/ ...
分类:
系统相关 时间:
2017-02-23 18:24:39
阅读次数:
225