//index.js
var express=require('express');
var app=express();
app.get('/',function(req,res){
res.send('hello express');
});
app.get('/user/:name',function(req,res){
res.send('hello '+req.params.name);
});
app.listen(3000);
当访问‘localhost:3000/users/fabrice’时为什么页面显示的是‘Cannot GET /users/fabrice’
求告知,感谢~~