当前位置: 代码迷 >> JavaScript >> JSON 响应最基准的 HTTP 头
  详细解决方案

JSON 响应最基准的 HTTP 头

热度:477   发布时间:2012-08-30 09:55:54.0
JSON 响应最标准的 HTTP 头
header( 'Content-Type: application/json' );
		header( 'Pragma: no-cache' );
		header( 'Cache-Control: no-cache, no-store, max-age=0' );
		header( 'Expires: 1L' );



取自 spring 框架中的
MappingJacksonView
  相关解决方案