fromdjango.shortcutsimportrender_to_response
fromdjangoimportforms
fromdjango.httpimportHttpResponse
classUserForm(forms.Form):
name=forms.CharField()
defregister(req):
ifreq.method==‘POST‘:
form_object=UserForm(req.POST)
ifform_object.is_valid():
printfo..
分类:
其他好文 时间:
2015-01-09 01:52:51
阅读次数:
156
关于request表示的路径:
请求: http://localhost:8080/project_name/admin/add.do
request.getRequestURI() ——〉/project_name/admin.do
request.getRequestURL() ——〉http://localhost:8080/project_name/admin/add.do
req...
分类:
其他好文 时间:
2015-01-09 00:16:50
阅读次数:
153
占位 1 #!/usr/bin/python 2 #coding=utf-8 3 4 import urllib 5 import urllib2 6 import json 7 8 def post(url, data): 9 req = urllib2.Request(url)10 ...
分类:
编程语言 时间:
2015-01-05 18:11:06
阅读次数:
254
var http = require(‘http‘);
function fib (n) {
if (n < 2) {
return 1;
} else {
return fib(n - 2) + fib(n - 1);
}
}
var server = http.createServer(function (req, res) {...
分类:
系统相关 时间:
2015-01-04 19:48:44
阅读次数:
179
为了应付大量用户请求,我们的网站加入了Varnish作为中间Cache。上线后使用varnishstat查看client_conn比client_req高很多,导致varnish产生大量TIME_WAIT。开始以为是Nginx没有开启keep-alive的原因,开启...
分类:
其他好文 时间:
2015-01-04 13:43:33
阅读次数:
227
async.auto({
??transaction:?function(next){
????User.query(‘BEGIN‘,?next);
??},
??user:?[‘transaction‘,?function(next)?{
????User.findOne(req.param(‘id‘)).exec(next);
??}],
??...
分类:
数据库 时间:
2015-01-04 06:35:50
阅读次数:
862
public ActionResult Img() { // 获取博客园空间顶部的banner图片 WebRequest req = WebRequest.Create("http://space.cnblogs.com/images/a4/...
分类:
Web程序 时间:
2015-01-01 11:13:39
阅读次数:
166
我们以前用到的对象都是用 new 调用构造方法获得的,而在 JSP 中提供了 9 个不需要
new 实例化的对象,我们把它叫做内置对象或者隐藏对象,它们分别是
pageContext、request、response、session、application、config、out、page、exception。
1. request 内置对象
zaiWeb开发中, req...
分类:
Web程序 时间:
2014-12-31 10:07:56
阅读次数:
170
表单验证 Flask-WTF 从?version 0.9.0有了变化,正确要引用wtforms包 正确的写法: from?flask.ext.wtf?import?Form
from?wtforms?import?TextField,?BooleanField
from?wtforms.validators?import?Req...
分类:
其他好文 时间:
2014-12-30 12:03:51
阅读次数:
179
先看一段测试代码: 1 var express = require('express'); 2 3 var app = express(); 4 var router = express.Router(); 5 6 app.get('/', function(req, res){ 7 ...
分类:
其他好文 时间:
2014-12-29 19:51:49
阅读次数:
160