最简单的服务器

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

const express = require('express');

var app = express();


//返回html格式
app.get('/',(req,res)=>{
 res.send('

Hello world

');
});

//返回json格式
app.get('/fast',(req,res)=>{
 res.send({
     name:'json',
     likes:[
       'reading',
       'coding'
     ]
 });
});
//监听端口
app.listen(3000);

访问:
localhost:3000
localhost:3000/fast

访问静态文件

创建public/help.html

1
2
3
4
5
6
7
8
9
10


"en" dir="ltr">
 
   "utf-8">
   
 
 
   

Hello Jonson


 

express.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

const express = require('express');

var app = express();

// 参数是一个middleware
app.use(express.static(__dirname +'/public'));
//返回html格式
app.get('/',(req,res)=>{
 res.send('

Hello world

');
});

//返回json格式
app.get('/fast',(req,res)=>{
 res.send({
     name:'json',
     likes:[
       'reading',
       'coding'
     ]
 });
});
//监听端口,  第二个回调是开启服务器后调用
app.listen(3000,()=>{
 console.log('hello jonson');
});

访问:
http://localhost:3000/help.html
会打开public/help.html的页面并显示出来。

动态注入 express template engines

1

npm install --save hbs

新建views/about.hbs:

1
2
3
4
5
6
7
8
9
10
11



 
   
   
 
 
   

{{currentYear}}


   
{{pageTitle}}

 

express.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

const express = require('express');
const hbs = require('hbs');
var app = express();

app.set('view engine','hbs');




// 参数是一个middleware
app.use(express.static(__dirname +'/public'));
//返回html格式
app.get('/',(req,res)=>{
 res.send('

Hello world

');
});

//返回json格式
app.get('/fast',(req,res)=>{
 res.send({
     name:'json',
     likes:[
       'reading',
       'coding'
     ]
 });
});

//动态传递参数。
app.get('/about',(req,res)=>{
 res.render('about.hbs',{
   pageTitle:'About Page',
   currentYear:new Date().getFullYear()
 });
});
//监听端口,  第二个回调是开启服务器后调用
app.listen(3000,()=>{
 console.log('hello jonson');
});

访问:
localhost/about

模版封装

新建:views/partial/footer.hbs:

1
2
3


   

{{pageTitle}}


view/abut.hbs:

1
2
3
4
5
6
7
8
9
10
11


"en" dir="ltr">
 
   "utf-8">
   
 
 
   

{{currentYear}}


     {{> footer}}
 

express.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

const express = require('express');
const hbs = require('hbs');
var app = express();

hbs.registerPartials(__dirname + '/views/partials');
app.set('view engine','hbs');
// 参数是一个middleware
app.use(express.static(__dirname +'/public'));


//返回json格式
app.get('/about',(req,res)=>{
 res.render('about.hbs',{
   pageTitle:'About Page',
   currentYear:new Date().getFullYear()
 });
});
//监听端口,  第二个回调是开启服务器后调用
app.listen(3000,()=>{
 console.log('hello jonson');
});

访问:
localhost/about

express middleware

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

const express = require('express');
const hbs = require('hbs');
const fs = require('fs');
var app = express();


hbs.registerPartials(__dirname + '/views/partials');
app.set('view engine','hbs');
// 参数是一个middleware
app.use(express.static(__dirname +'/public'));
//返回html格式
app.get('/',(req,res)=>{
 res.send('

Hello world

');
});

//自定义middleware
app.use((req,res,next)=>{
 var now = new Date().toString();
 var log = `${now}:${req.method} ${req.url}`;
 console.log(log);
 fs.appendFile('server.log',log+'\n',(err)=>{});
 next();

});
//返回json格式
app.get('/fast',(req,res)=>{
 res.send({
     name:'json',
     likes:[
       'reading',
       'coding'
     ]
 });
});

//返回文件,about.hbs在views文件夹下
app.get('/about',(req,res)=>{
 res.render('about.hbs',{
   pageTitle:'About Page',
   currentYear:new Date().getFullYear()
 });
});
//监听端口,  第二个回调是开启服务器后调用
app.listen(3000,()=>{
 console.log('hello jonson');
});
  • 本文链接: https://dreamerjonson.com/2018/11/15/node-15-express/

  • 版权声明: 本博客所有文章除特别声明外,均采用 CC BY 4.0 CN协议 许可协议。转载请注明出处!

image.png