⽤POSTMAN发送JSON格式的POST请求⽰例postman是⼀个很好的http模拟器,在测试rest服务时是很好⽤的⼯具,可以发送get、post、put等各种请求。选择“POST”⽅式,在“headers”添加key:Content-Type , value:application/json 点击"body",''raw''并设定为JSON 添加:{"userid": 1} 点击send发送即可 以上...