node-接口

const express=require(‘express’);
var server=express();
server.use(’/a.html’,function(req,res){
res.send(‘abc’);
res.end()
})
server.use(’/b.html’,function(req,res){
res.send(‘123’)
res.end()
})
server.listen(8080);

const express=require(‘express’);
var server=express();
server.get(’/’,function(){
console.log(‘有GET’)
})
server.post(’/’,function(){
console.log(‘有POST’)
})
server.listen(8080);

Document 用户:
![在这里插入图片描述](https://www.icode9.com/i/ll/?i=20210612232324851.png?,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NzgxODQ2Nw==,size_16,color_FFFFFF,t_70) ![在这里插入图片描述](https://www.icode9.com/i/ll/?i=2021061223233911.png) ![在这里插入图片描述](https://www.icode9.com/i/ll/?i=20210612232915671.png) ![在这里插入图片描述](https://www.icode9.com/i/ll/?i=20210612233333503.png?,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NzgxODQ2Nw==,size_16,color_FFFFFF,t_70) ![在这里插入图片描述](https://www.icode9.com/i/ll/?i=20210612233320844.png)

node-接口模拟接口登录
node-接口node-接口

上一篇:基于SSM框架图书管理系统开发与设计(附源码资料)-毕业设计


下一篇:Spring的Aop日志切面实现