初學node.js遇到express問題
怪我咯
怪我咯 2017-05-16 13:42:20
0
2
381
//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’
求告知,感謝~~

怪我咯
怪我咯

走同样的路,发现不同的人生

全部回覆(2)
大家讲道理

你寫多了一個s

阿神

你路由配的是user 存取的卻是users←_←

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板