在http.ServerResponse对象的end方法被调用之前,如果连接被中断,将触发http.ServerResponse对象的close事件. 1 var http=require("http"); 2 var server=http.createServer(function(req,re...
分类:
其他好文 时间:
2014-11-01 11:35:47
阅读次数:
171
request.setCharacterEncoding("utf-8");不加这句话时,从input控件得到值要用new String(request.getParameter("").getBytes("ISO-8859-1"),"utf-8")方法,而从 a href=""中得到值直接用req...
分类:
其他好文 时间:
2014-10-28 20:02:33
阅读次数:
181
安装好nodejs之后在命令行中直接运行:node -v var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}...
分类:
Web程序 时间:
2014-10-25 01:59:21
阅读次数:
252
该类可获取一些请求地址,在自定义struts2标签时用到 1 //获取值栈 2 Map cont= this.getStack().getContext(); 3 StrutsRequestWrapper req=(StrutsRequestWrapper)co...
分类:
移动开发 时间:
2014-10-23 14:13:20
阅读次数:
312
随着express升级,bodyParser从express中被分离了出来,因此,在使用express新版本的时候,需要npm install body-parser 来安装bodyParser。 在app.js中要引入bodyParser。 var bodyParser = require(‘body-parse...
分类:
Web程序 时间:
2014-10-22 13:04:11
阅读次数:
1076
通过nodejs搭建一个HTTP服务器//引入http模块var http = require('http');function onReg(req,res){ res.writeHead(200,{"Content-Type:text/plain;charset=utf-8"}); r...
分类:
Web程序 时间:
2014-10-22 06:15:48
阅读次数:
216
设计思想: 创建一个HttpWebRequest类的实例,并通过GetReponse()方法取回响应的HTTP响应。实例方案:string url="http://www.baidu.com";HttpWebRequest req=(HttpWebRequest)WebRequest.Cr...
分类:
Web程序 时间:
2014-10-19 11:23:30
阅读次数:
156
表单 从Google的简朴的单个搜索框,到常见的Blog评论提交表单,再到复杂的自定义数据输入接口,HTML表单一直是交互性网站的支柱。本次内容将介绍如何用Django对用户通过表单提交的数据进行访问、有效性检查以及其它处理。 与此同时,我们将介绍HttpRequest对象和Form对象。从Req....
分类:
编程语言 时间:
2014-10-18 16:58:00
阅读次数:
300
遇到的问题一: $req = new WaimaiOrderIndexGetRequest; $req->setPageSize(100); $req->setPageNo(1); $req->setOrderStatus(21); $resp = $c->execu...
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...
分类:
其他好文 时间:
2014-10-17 00:11:33
阅读次数:
277