首页 > Web开发 > 详细

nodejs

时间:2017-12-27 21:18:31      阅读:190      评论:0      收藏:0      [点我收藏+]
app.engine(‘html‘, require(‘ejs‘).__express);//html模板需要引进
app.set(‘view engine‘,"html");
app.set("views ", __dirname + ‘/views‘);

app.get("/",function(req,res){
    res.render("index.html",{name:"guanhb"})
})
  //app.use(require(‘../routes/route‘))
  app.get(‘/class‘,function(req,res){
      res.status(200);
      res.json({
          python:20,
          nodejs:1,
          other:10
      })
  })
  app.listen(3000);

 

nodejs

原文:https://www.cnblogs.com/guanguan-/p/8127602.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!