wing2002li

导航

2016年10月17日 #

查看旧版jexus命令

摘要: 查看jexus版本 curl http://localhost/info 阅读全文

posted @ 2016-10-17 11:09 三省其身 阅读(240) 评论(0) 推荐(0) 编辑

2016年10月11日 #

apache不断占内存过大,导致虚拟机内存不足,处理方法。

摘要: 我用512M的vps,访问量不大,但内存占用很大,甚至宕机。 我用top,然后shitf+m发现,httpd占用内存极大。经过网上找资料设置后,用过一段时间终于没再出现内存问题了。 首先查找配置文件的位置,可以用如下命令: find / -name httpd.conf找到配置文件/usr/loca 阅读全文

posted @ 2016-10-11 11:13 三省其身 阅读(439) 评论(0) 推荐(0) 编辑

2016年9月5日 #

在chrome 总调试cordova出现Detached from the target. Remote debugging has been terminated with reason: Connection lost. Please re-attach to the new target

摘要: 在chrome 总调试cordova出现如下错误: "Detached from the target. Remote debugging has been terminated with reason: Connection lost. Please re-attach to the new ta 阅读全文

posted @ 2016-09-05 12:28 三省其身 阅读(825) 评论(1) 推荐(0) 编辑

2016年8月24日 #

webstorm 10 出现不能run cordova项目

摘要: could not create the java virtual machine Error occurred during initialization of VM Could not reserve enough space for object heap could not create t 阅读全文

posted @ 2016-08-24 15:15 三省其身 阅读(347) 评论(0) 推荐(0) 编辑

2016年6月13日 #

extjs 选择器

摘要: http://roc08.iteye.com/blog/1685595 阅读全文

posted @ 2016-06-13 11:46 三省其身 阅读(174) 评论(0) 推荐(0) 编辑

2016年5月26日 #

ext.net与extjs的关系

摘要: 一、在客户端,ext.net中可以使用extjs的语法。 如发送ajax请求, Ext.Ajax.request({ url: 'Common/getNode', headers: { 'userHeader': 'userMsg' }, params: { nodeid: field.value 阅读全文

posted @ 2016-05-26 14:52 三省其身 阅读(369) 评论(0) 推荐(0) 编辑

2016年5月3日 #

js动态更改对象属性值的方法

摘要: 下面代码,替换属性名称包含date的属性中的T为空格。 for (var o in data) { //console.info(eval("data." + o)); if (o.toString().indexOf("Date") > -1) { data[o] = data[o].toStri 阅读全文

posted @ 2016-05-03 20:25 三省其身 阅读(5251) 评论(0) 推荐(0) 编辑

2016年4月27日 #

jquery'中的匿名函数

摘要: //jquery'中的匿名函数 (function(){ alert("this is a test"); })(); //和这个基于jQuery的比较下: $(function(){ alert("this is a test"); }); 阅读全文

posted @ 2016-04-27 17:42 三省其身 阅读(2035) 评论(0) 推荐(0) 编辑

2016年4月26日 #

EXT.net DateField format设置

摘要: DateField df = new DateField(); df.Format = "yyyy-MM-dd HH:mm:ss";格式必须写成这样才能识别,如果写成Y-m-d H:i:s,系统将无法赋值。 阅读全文

posted @ 2016-04-26 15:57 三省其身 阅读(319) 评论(0) 推荐(0) 编辑

2016年4月20日 #

Extnet Direct 提交后台事件文件下载设置

摘要: App.direct.MasterData.Export(App.tfSearch.getValue(), { isUpload: true }); 阅读全文

posted @ 2016-04-20 12:13 三省其身 阅读(174) 评论(0) 推荐(0) 编辑