最新消息: 新版网站上线了!!!

node.js 使用express框架的例子

var express   =     require("express");
var bodyParser  =    require("body-parser");
var app       =     express();
app.use(bodyParser.urlencoded({ extended: false }));

app.get('/',function(req,res){
  res.sendfile("index.html");
});

app.post('/login',function(req,res){
  var user_name=req.body.user;
  var password=req.body.password;
  console.log("From Client pOST request: User name = "+user_name+" and password is "+password);
  res.end("yes");
});


app.listen(3000,function(){
  console.log("Started on PORT 3000");
})

下载源码

下载源码

.....

转载请注明:谷谷点程序 » node.js 使用express框架的例子