get:
//当你以get方法请求/的时候,执行对应的处理函数
app.get('/', function)(req, res){
res.send('Hello World')
})
post:
//当你以post方法请求/的时候,执行对应的处理函数
app.post('/', function)(req, res){
res.send('Got a POST request')