node server.js
在浏览器窗口打开地址 http://localhost:9999/index.html 即可进入项目首页
- URL:/getAllList GET
- 参数:无
- 返回:
'{
code:0,//->0成功 1失败
msg:'',//->对CODE的描述
data:[
{
id:1,
name:'xxx'
},
...
]
}'
- URL:/addInfo POST
- 参数:'name=xxx'
- 返回:
'{
code:0,
msg:''
}'
- URL:/updateInfo POST
- 参数:'id=xxx&name=xxx'
- 返回:
'{
code:0,
msg:''
}'
- URL:/getInfo GET
- 参数:?id=1 传递给服务器对应的客户的ID
- 返回:
'{
code:0,
msg:'',
data:{
id:1,
name:''
}
}'
- URL:/removeInfo GET
- 参数:?id=1
- 返回:
'{
code:0,
msg:''
}'