There are N children standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following req...
分类:
其他好文 时间:
2015-05-06 21:12:47
阅读次数:
148
前jQuery端接收数据function upAvatar(img){ console.log(img); // data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMD…/7vA+eq/xZAlzs/.....
分类:
Web程序 时间:
2015-05-06 12:42:53
阅读次数:
582
如果页面有大量的表单元素,在springMVC中一般都是表单和pojo对象做相应的对应,或者直接通过request获得对象,但是还有另外一种得到表单元素的方法,具体代码如下: // java.util.Enumeration req是HttpServletRequest对象
Enumeration paras = req.getPara...
分类:
其他好文 时间:
2015-05-06 11:05:45
阅读次数:
277
// 获取http请求 function getXMLHttpRequest() { req = false; //本地XMLHttpRequest对象 if (window.XMLHttpRequest) { try { req = new XMLHttpRequest(); } catch (e...
分类:
Web程序 时间:
2015-05-06 10:31:35
阅读次数:
141
最近考察一下NTOPNG和NGX-REQ模块,看哪个对网站优化性能用户更大。。。参考URL:http://www.68idc.cn/help/jiabenmake/qita/20150109164851.html中间有此曲折。./third-party/zeromq-3.2.4/src/.libs/...
分类:
Web程序 时间:
2015-05-03 15:54:07
阅读次数:
171
生成密钥:openssl genrsa -out my.key 2048生成csr申请文件:openssl req -sha256 -new -key my.key -out my.csr生成自签名证书:openssl x509 -req -days 365 -in my.csr -signkey ...
分类:
其他好文 时间:
2015-05-01 18:35:41
阅读次数:
152
import urllib2import hashlibopener = urllib2.build_opener()req = opener.open("http://avatar.csdn.net/E/5/5/2_sdjtwenzhihao.jpg")meta = req.info()file_...
分类:
编程语言 时间:
2015-05-01 00:30:55
阅读次数:
134
用jquery ajax()方法,在其他浏览都通过,IE7以上都通过,唯独在ie6不行。我这边的解决方案是:必须保证ajax里面的所有数字为小写,ie6对大小写敏感。错误:$.ajax({ url:'update.req', data:data, ...
分类:
Web程序 时间:
2015-04-29 16:52:51
阅读次数:
209
router.get("/", function(req, res) { res.render("index", {"title":"express"});});这段代码的意思是当访问主页时,调用ejs模板引擎,来渲染index.ejs模板文件(即将title变量全部替换为字符串Express),....
分类:
其他好文 时间:
2015-04-28 20:21:02
阅读次数:
258
后台代码: [HttpPost] public string AjaxWeather() { string CityName = string.IsNullOrEmpty(Request.Form["city"]) ? "" : Req...
分类:
Web程序 时间:
2015-04-28 17:53:28
阅读次数:
233