zoukankan      html  css  js  c++  java
  • 前台请求响应json

    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    <script src="${pageContext.request.contextPath}/jquery-3.3.1.min.js"></script>
    <script type="text/javascript">
    function submits(){
    var str = $("#str").val();
    $.ajax({
    type:'POST',
    url:"${pageContext.request.contextPath}/springboot/getUserByPost",
    data:str,
    //dataType:'json',/告诉服务器,我要接收的是json格式数据
    contentType:'application/json',//告诉服务器我发送的是json格式数据
    success:function(data){
    alert(syntaxHighlight(data));
    }

    });
    }

    function syntaxHighlight(json) {
    if (typeof json != 'string') {
    json = JSON.stringify(json, undefined, ' ');//第三个
    }
    json = json.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
    return json.replace(/("(\u[a-zA-Z0-9]{4}|\[^u]|[^\"])*"(s*:)?|(true|false|null)|-?d+(?:.d*)?(?:[eE][+-]?d+)?)/g, function (match) {
    var cls = 'number';
    if (/^"/.test(match)) {
    if (/:$/.test(match)) {
    cls = 'key';
    } else {
    cls = 'string';
    }
    } else if (/true|false/.test(match)) {
    cls = 'boolean';
    } else if (/null/.test(match)) {
    cls = 'null';
    }
    return '<span class=" + cls + ">' + match + '</span>';;
    });
    }
    </script>
    </head>
    <body>
    <center>
    <form id="testform">
    内容:
    <textarea rows="10" cols="50" id="str"></textarea>
    <br /> <input type="button" value="提交" onclick="javascript:submits();"/>
    </form>
    </center>
    </body>
    </html>

  • 相关阅读:
    终于清楚了!!!【使用jenkins发布应用到tomcat详细过程】
    RocketMQ相关问题
    关于idea修改当前使用的git账户的问题
    Elasticsearchan安装初尝01-问题记录
    Redis学习日记-03
    Git初探笔记02
    Git初探笔记01
    Redis学习日记-02
    HDU 1017
    HDU 1013
  • 原文地址:https://www.cnblogs.com/lichangyunnianxue/p/9708412.html
Copyright © 2011-2022 走看看