码迷,mamicode.com
首页 > Web开发 > 详细

nodejs

时间:2017-12-27 21:33:28      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:set   html模板   UI   需要   模板   get   express   log   nbsp   

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

标签:set   html模板   UI   需要   模板   get   express   log   nbsp   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!