写一个访问java接口并post请求携带token的页面
时间: 2023-12-17 09:05:48 浏览: 141
用java写post请求(添加post参数)
下面是一个使用 jQuery 发起 POST 请求并携带 token 的示例页面:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>POST 请求示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div>
<h1>POST 请求示例</h1>
<button id="btn-post">发起 POST 请求</button>
</div>
<script>
$(document).ready(function() {
var token = 'your_token_here'; // 替换成真实的 token
$('#btn-post').click(function() {
$.ajax({
url: 'your_api_url_here',
type: 'POST',
data: {
// 请求参数
},
beforeSend: function(xhr) {
xhr.setRequestHeader('Authorization', 'Bearer ' + token);
},
success: function(data) {
console.log(data);
},
error: function(error) {
console.log(error);
}
});
});
});
</script>
</body>
</html>
```
在上面的代码中,你需要将 `your_token_here` 替换为你实际使用的 token,将 `your_api_url_here` 替换为你要访问的 Java 接口的 URL。在发送 POST 请求时,可以在 `data` 属性中添加请求参数,也可以通过其他方式传递请求参数,具体取决于 API 的要求。在 `beforeSend` 回调函数中,我们设置了 `Authorization` 请求头,并将 token 作为 Bearer token 添加到其中。在成功或失败时,我们使用 `console.log()` 函数分别输出响应数据或错误信息。
阅读全文