码迷,mamicode.com
首页 >  
搜索关键字:req    ( 1392个结果
node.js form 上传
安装formidablepm install formidable@latest客户端表单提交 上传文件 上 传 服务端指定路由规则router.post('/upload', function(req, res) { ...
分类:Web程序   时间:2014-12-29 19:51:28    阅读次数:160
[cookie篇]cookie-parser之parser.js
cookie-parser的作用,官方的说法是:ParseCookieheader and populatereq.cookieswith an object keyed by the cookie names.我的理解是,转换headers中的cookie并跟req.cookies合并。作为coo...
分类:Web程序   时间:2014-12-29 15:13:42    阅读次数:202
后台数据传递到页面
router.get '/', (req, res)-> res.render 'setting', { games:games,counts:counts }p class:"fontP",->@games.gameNamea href:"javascript:Ongame(#{@ga...
分类:其他好文   时间:2014-12-25 18:07:10    阅读次数:114
Nginx 之Tengine limit_req模块模块测试
最近有机会接触Tengine,官方文档连接:http://tengine.taobao.org/index_cn.html。 关于Tengine的简介如下: Tengine是由淘宝网发起的Web服务器项目。它在Nginx的基础上,针对大访问量网站的需求,添加了很多高级功能和特性。Tengin...
分类:其他好文   时间:2014-12-24 20:00:59    阅读次数:845
ios php RSA 非对称加密解密 der 和pem生成
ios 使用public_key.der加密php 使用 private_key.pem解密openssl req -x509 -out public_key.der -outform der -new -newkey rsa:1024 -keyout private_key.pemphrase:c...
分类:移动开发   时间:2014-12-24 11:38:50    阅读次数:216
nginx模块开发获取post参数
> 您好!> 我想请问下nginx模块里面怎么获取post参数,能有具体的代码更好!谢谢>对于 "application/x-www-form-urlencoded" 格式的 POST 参数获取,可以参考 ngx_lua 模块的ngx.req.get_post_args() 函数以及 ngx_f.....
分类:其他好文   时间:2014-12-21 23:32:08    阅读次数:266
google api , using a refresh token to get the access token
router.get('/refresh',function(req,res){ oauth2Client.credentials = { refresh_token: '1/RqVyL7yLBxwsCA4h5IzDJuMVcCwX3munQz1ntGyg99I'}; oauth2Client......
分类:数据库   时间:2014-12-21 22:05:36    阅读次数:211
【我的笔记BLOG3】Express基本用法,和路由控制,和模板渲染ejs
1. 路由控制的工作原理//routes/index.js中的代码//访问主页时,调用ejs模板引擎,渲染index.ejs模板文件,生成静态页面,并显示在浏览器中。router.get('/', function(req, res) { //捕获访问主页的GET请求 res.render('...
分类:Web程序   时间:2014-12-21 21:57:25    阅读次数:290
SSL 设置域名访问
为域名https.ssl.com设置https加密访问过程: 命令如下: #opensslgenrsa-des3-outhttps.ssl.com.key1024 #opensslreq-new-keyhttps.ssl.com.key-outhttps.ssl.com.csr #opensslrsa-inhttps.ssl.com.key-outhttps.ssl.com_nopass.key #openssl-req-new-x509-days3650-keyhttps..
分类:其他好文   时间:2014-12-19 02:06:00    阅读次数:203
Rust d
extern crate libc; use libc::c_int; enum Hello{ Req = 1i, Pub = 2i, } impl Hello{ fn to_raw(&self) -> c_int{ *self as c_int } } fn main() { println!("Hello, world!") println!("{}", Hello::Pub.to_ra...
分类:其他好文   时间:2014-12-14 22:51:03    阅读次数:378
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!