Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 462 Bytes

第一个路由.md

File metadata and controls

17 lines (11 loc) · 462 Bytes

添加路由

express里添加路由规则相当简单。如下代码所示,一个路由规则就添加好了。代码参考这里

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

app.get('/hello', function(req, res, next){
    res.send('hello world!');
});

app.listen(3000);

启动服务,然后访问 http://127.0.0.1/hello,搞定。