1、http模块 创建服务器
使用 http.createServer() 方法创建服务器,并使用 listen 方法绑定 8888 端口。 函数通过 request, response 参数来接收和响应数据。
var http = require('http');//加载http模块
http.createServer(function (request, response) {
//创建服务器
// 发送 HTTP 头部
// HTTP 状态值: 200 : OK
// 内容类型: text/plain
//response.writeHead(200, {'Content-Type': 'text/plain'});
// 发送响应数据 "Hello World"
//response.end('Hello World\n');
// 内容类型: text/html
response.writeHead(200,{"Content-type":"text/html;charset=utf-8"});
// 响应写入html代码
response.write("你好,fdsas这是你的第一个Node服务
");
response.end();
}).listen(8888);
// 终端打印如下信息
console.log('Server running at http://127.0.0.1:8888/');
2、url模块 解析url路径
var url = require("url");//加载url模块
var href = "www.baidu.com/shop/index.html?user=admin&pwd=12345&type=login#1";
// console.log(url.parse(href));//解析url
var obj = url.parse(href,true);//传入true 与不传入的差别在于是否将query解析成对象
console.log(obj.query);
var hObj = {
protocol: 'http:',//请求协议 http https ssl ftp ftps
slashes: true,//是否包含双斜杠
auth: null,//作者
host: 'www.baidu.com:8080',//主机 含端口号
port: '8080',//端口号
hostname: 'www.baidu.com', //主机名 不含端口号
hash: '#1',//锚点值 哈希
search: '?user=admin&pwd=12345&type=login',//搜索字符串 含问号
query: 'user=admin&pwd=12345&type=login',//查询字符串 不含问号
pathname: '/shop/index.html',//请求路径 不含主机、查询字符串等
path: '/shop/index.html?user=admin&pwd=12345&type=login',
href: 'http://www.baidu.com:8080/shop/index.html?user=admin&pwd=12345&type=login#1'
};
//format()把对象合成url;
console.log(url.format(hObj));
3、fs模块 读写操作文件
var fs = require("fs");//加载fs文件模块
//fs.readFile(path[,options],callback);
//异步读取文件异步读取文件
fs.readFile("data.txt","UTF-8",function(err,data){
console.log("读取文件中...");
console.log(data);
});
//readFileSync(path,options)同步读取文件
var data1 = fs.readFileSync("data.txt","UTF-8");
console.log("读取文件中...");
console.log(data1);
console.log("读取文件完成");
//writeFile(path,content,options,callback)
//异步写入文件内容
fs.writeFile("data.txt", "这是通过写入方式增加的内容", "UTF-8", function(err){
console.log("写入文件中...");
console.log(err);
});
console.log("写入完成");
//writeFileSync(path,content,option)同步写入文件
fs.writeFileSync("data.txt","这是同步写入的内容","UTF-8");
构建复制文件的方法(管道流):
fs.createReadStream("a.txt").pipe(fs.createWriteStream("b.txt"));
4、querystring模块 解析查询字符串
var obj = {
user : "admin",
pwd : 123,
type : "login"
};
console.log(qs.stringify(obj));//默认情况 $ = a=b&c=d
console.log(qs.stringify(obj,"#"));//两个参数 &被替换为指定值 a=b#c=d
console.log(qs.stringify(obj,"#","-"))//三个参数 &被替换为第二个参数 =被替换为第三个参数 a-b#c-d
var str = "user=admin&pwd=123&type=login";
var str1 = "user=admin*pwd=123*type=login";
var str2 = "user-admin#pwd-123#type-login";
console.log(qs.parse(str));
console.log(qs.parse(str1,"*"));
console.log(qs.parse(str2,"#","-"));
/*
打印结果依次为:
user=admin&pwd=123&type=login
user=admin#pwd=123#type=login
user-admin#pwd-123#type-login
{ user: 'admin', pwd: '123', type: 'login' }
{ user: 'admin', pwd: '123', type: 'login' }
{ user: 'admin', pwd: '123', type: 'login' }
*/
5、http+url+fs综合
var http = require("http");
var url = require("url");
var fs = require("fs");
http.createServer(function(req, res) {
res.writeHead(200, {
"Content-type": "text/html;charset=utf-8"
});
var p = url.parse(req.url, true);
var pathname = p.pathname; //取得访问路径
console.log(pathname);
if (pathname == "/") {
fs.readFile("login.html", "utf-8", function(err, data) {
if (err) {
res.write("这个页面可能没了
");
} else {
res.write(data);
}
res.end();
});
} else if (pathname == "/login") {
var user = p.query.user;
if (user == "admin") {
fs.readFile("index.html", "utf-8", function(err, data) {
if (err) {
res.write("首页去旅游了
");
} else {
res.write(data);
}
res.end();
})
}
} else if (pathname == "/data.json") {
fs.readFile("data.json", "utf-8", function(err, data) {
if (err) {
res.write("首页去旅游了
");
} else {
res.write(data);
}
res.end();
})
}else if (pathname == "/style.css") {
fs.readFile("style.css", "utf-8", function(err, data) {
if (err) {
res.write("首页去旅游了
");
} else {
res.write(data);
}
res.end();
})
}
}).listen(8080);
console.log("8080服务启动");
6、post请求方式的处理
var http = require("http"),
url = require("url"),
fs = require("fs");
http.createServer(function(req,res){
//响应头
res.writeHead(200,{
"Content-text":"text/html;charset=utf-8"
});
var rurl = url.parse(req.url,true),
pathname = rurl.pathname,
query = pathname.query;
if (pathname == "/") {
fs.readFile("login.html","UTF-8",function(err,data){
res.write(data);
res.end();
});
} else if (pathname == '/login') {
var str = "";
if (req.method == "GET") {
//GET请求
str = query.user;
} else{
//POST 请求
//node.js 处理post请求的方式:为request添加data的数据监听当有数据进入时会触发
req.on('data', function(chunk) {
//chunk即为post请求时 进入的数据块 buffer类型
console.log(chunk.toString());
});
//为request对象添加end监听 ,当所有post数据接受完成后触发
req.on('end', function() {
console.log("数据接受完成");
});
};
res.end();
}
}).listen(8088);
console.log("服务已经启动,端口号是8088");
通过req.query来获取查询参数(提交数据)时,只能获取GET方式的请求而无法获取post请求传递过来的数据,Node.js认为post一般情况提交的数据量较大,而在处理请求体过程不需要去等待所有数据提交完成
7、event事件模块
var events = require("events");//获取事件模块
var event = new events.EventEmitter();//调用事件发射器对象产生实例
//添加事件
//event.on('事件1',function() {
// console.log("被触发");
//});
event.on("动作",function(val){
console.log("添加事件----这是动作"+val);
});
//触发事件 其它常规的事件触发用trige
//event.emit("事件1");
event.emit("动作","跑");
//移除单个监听事件
//event.removeListener("动作",callback);
//移除所有监听
event.removeAllListeners();
node并不建议为同一个对象添加超过十个同样的事件,因为它有可能造成内存问题,如果必须要添加,可以使用event.setMaxListeners(number)来设置最大添加数量
8、express的路由以及路由传参实例
var express = require('express'); //加载express模块
var app = express();
var bodyParser = require('body-parser'); //解析路由传参
// 创建 application/x-www-form-urlencoded 编码解析
var urlencodedParser = bodyParser.urlencoded({ extended: false })
//Express 提供了内置的中间件 express.static 来设置静态文件
app.use(express.static('public'));
app.get('/index.htm', function (req, res) {
//相对路径
res.sendFile( __dirname + "/" + "index.htm");
})
app.get('/process_get', function (req, res) {
// 输出 JSON 格式
response = {
first_name:req.query.first_name,
last_name:req.query.last_name
};
console.log(response);
res.end(JSON.stringify(response));
})
app.post('/process_post', urlencodedParser, function (req, res) {
// 输出 JSON 格式
response = {
first_name:req.body.first_name,
last_name:req.body.last_name
};
console.log(response);
res.end(JSON.stringify(response));
})
//监听端口
var server = app.listen(8081, function () {
var host = server.address().address
var port = server.address().port
console.log("应用实例,访问地址为 http://%s:%s", host, port)
})