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-08-12 21:39:14
阅读次数:
227
在Express框架下,使用ejs模板引擎:支持默认的layout布局需要express-partials模块;使用include代替partials;片段视图显示方式也与3.x版不同,采用如下方式:routers/index.js添加:router.get(‘/list‘,function(req,res){
res.render(‘list‘,{
layout:false,
title:‘Express..
分类:
Web程序 时间:
2014-08-08 16:33:19
阅读次数:
312
file.js文件 需要安装formidable 模块 var?formidable?=?require(‘formidable‘);
var?????http?=?require(‘http‘);
var?????sys?=?require(‘sys‘);??
http.createServer(function(req,?res)?...
分类:
其他好文 时间:
2014-08-08 13:02:36
阅读次数:
202
private var loader:URLLoader;...private function init():void{ loader = new URLLoader; req=URLRequest = new URLRequest("1.txt"); loader.load(req);...
分类:
其他好文 时间:
2014-08-06 14:34:11
阅读次数:
219
import urllib.requestimport restarturl="http://wooyun.org/searchbug.php?q=%E9%87%91%E8%9E%8D"def get_html_response(url): html_response = urllib.req...
分类:
编程语言 时间:
2014-08-05 22:27:31
阅读次数:
246
起初没400 Bad request
过一段时间就产生了
[pid: 14558|app: 0|req: 23/23] 123.127.3.37 () {38 vars in 653 bytes} [Mon Aug 4 21:29:55 2014] GET / => generated 0 bytes in 6 msecs (HTTP/1.1 500) 4 headers in 147 by...
分类:
其他好文 时间:
2014-08-05 00:44:10
阅读次数:
724
一、web服务器示例var http = require('http');http.createServer(function(req, res){ res.writeHeader(200, {Content-Type : 'text/plain'}); res.end('hello w...
分类:
Web程序 时间:
2014-08-05 00:01:58
阅读次数:
417
var http = require('http'), fs = require('fs'), url = require('url'), path = require('path');http.createServer(function(req, res) { var pathurl = u...
分类:
Web程序 时间:
2014-08-03 20:29:25
阅读次数:
643
这个才是我们学node.js的真正原因,服务器!1、新建一个 index.js 写下var myhttp=require('http');myhttp.createServer(function(req,res){res.writeHead(200,{'Content-Type':''text/t....
分类:
Web程序 时间:
2014-08-02 18:05:13
阅读次数:
224
首先来看这一部分代码 1 /** 2 * Created by bsn on 14-7-1. 3 */ 4 var connect = require('connect'); 5 6 var app = connect(); 7 function hello(req, res, next) {...
分类:
Web程序 时间:
2014-08-02 12:41:53
阅读次数:
193