欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ajax请求后端数据解析

程序员文章站 2023-11-27 16:34:22
ajax请求后端数据 发送请求get发...

ajax请求后端数据

<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script><script type="text/javascript"> function sendajaxpost(){ let json = { username: "lindont", password: "123456" } $.ajax({ type: "post", url: "https://localhost:8787/test/params", contenttype: "application/json; charset=utf-8", data: json.stringify(json), /*传给后端的数据格式json*/ datatype: "json", /*后端返回的数据格式json*/ success: function(data){ console.log(data); }, error: function (message) { } }); } function sendajaxget() { $.ajax({ type: "get", url: "https://localhost:8787/test", success: function(data){ console.log(data); }, error: function (message) { } }); } </script>