前端url请求: ‘/community/getCreatedCom’
后台:
server.get('/community/:id',function(req,res){
let id = req.params.id;
if(id=="getCreatedCom") {
console.log('getCreatedCom');
}
})
前端url请求: ‘/community/getCreatedCom’
后台:
server.get('/community/:id',function(req,res){
let id = req.params.id;
if(id=="getCreatedCom") {
console.log('getCreatedCom');
}
})