postman只显示了一个空【】
数据库中有数据但是无法获取在postman中,postman只显示了一个空【】, 为啥?
数据库中有数据但是无法获取在postman中,postman只显示了一个空【】, 为啥?
2018-07-15
这问题怎么回答啊,你要把截图放上来!
你可以放到浏览器上测试一下,来对比postman的结果(验证是否postman使用不正确,或者是代码写错了)。如果是post的请求可以创建一个html form表单提交。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Hello Spring Boot</title> </head> <body> <h1>Hello Spring Boot</h1> <form action="http://localhost:8080/girls/" method="post"> cupSize : <input type="text" name="cupSize" value=""/> <br> age : <input type="text" name="age" value=""/> <br> <input type="submit" value="提价按钮"> </form> </body> </html>
举报