HTTP Status 406 记一次异常的解决

某次开发中需要对请求的参数和参数名进行特殊字符过滤,特殊字符包括<>、;、script、select、truncate、drop等。

同事已写了相关代码,我只需加上对以上特殊字符的过滤即可,但是加上了好多页面打不开、请求不成功,报错如下:

The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.

 

检查代码发现,同事对header中的信息也进行了过滤,请求头中的Accept原来为application/json, text/javascript, */*; q=0.01,被替换后script和分号都没了,所以报此错误。解决办法多样,别破坏Accept的值就可以了。

你可能感兴趣的:(学习笔记)