search

Home  >  Q&A  >  body text

java - resetful 服务器设定返回http状态码

在客户端请求到达服务器后,我会进行操作,如果请求数据操作失败(保存到数据库失败),我想返回客户端的状态码为400.这时候却一直是200,怎么修改状态码呢

PHP中文网PHP中文网2780 days ago698

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-18 09:33:19

    You can set the response result in the header, for example

    header(‘HTTP/1.1 404 Not Found’);

    reply
    0
  • Cancelreply