加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ajax(cors跨域)最简单输出json数据方法,无需第三方框架或代码

发布时间:2020-12-16 03:25:21 所属栏目:百科 来源:网络整理
导读:/** * cors输出json数据 * @param response * @param json json字符串 * @param domain 需要跨域的域名 */protected void outputCrossString(final HttpServletResponse response,final String json,final String domain) {try {response.setContentType("ap
/**
	 * cors输出json数据
	 * @param response
	 * @param json json字符串
	 * @param domain 需要跨域的域名
	 */
	protected void outputCrossString(final HttpServletResponse response,final String json,final String domain) {
		try {
			response.setContentType("application/json;charset=utf-8");
			response.setCharacterEncoding("utf-8");
			response.setHeader("Pragma","No-cache");
			response.setDateHeader("Expires",0);
			response.setHeader("Cache-Control","no-cache");
			response.setHeader("Access-Control-Allow-Origin",domain); //核心请求头
			response.setHeader("Access-Control-Allow-Credentials","true"); //核心请求头
			PrintWriter out = null;
			try {
				out = response.getWriter();
				out.write(json);
				out.flush();
			} catch (Exception e) {
				e.printStackTrace();
			} finally {
				if (out != null) {
					out.close();
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
输出json数据只需调用这个方法即可

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读