image.png
    image.png

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <title>Title</title>
    6. <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
    7. </head>
    8. <body>
    9. <button type="button" id="query">请求数据</button>
    10. <div id="content" style="background-color: aquamarine;width: 300px;height: 500px"></div>
    11. </body>
    12. <script type="text/javascript">
    13. $("#query").click(function () {
    14. $.ajax(
    15. {
    16. url: "http://127.0.0.1:8021/u/v1/user/list",
    17. dataType: "json",
    18. type: "get",
    19. beforeSend: function (request) {
    20. request.setRequestHeader("x-token", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJJRCI6MTAsIk5pY2tOYW1lIjoiamVmZjEiLCJBdXRob3JpdHlJZCI6MSwiZXhwIjoxNjYyMjg5NTI5LCJpc3MiOiJqZXRicmFpbnMiLCJuYmYiOjE2NTk2OTc1Mjl9.6TtDLNAdfzqes6peUAFe3hgqSsSXuvaJrRxAXwMZ1NQ")
    21. },
    22. success: function (result) {
    23. console.log(result.data);
    24. $("#content").text(result.data)
    25. },
    26. error: function (data) {
    27. alert("请求出错")
    28. }
    29. }
    30. );
    31. });
    32. </script>
    33. </html>