jquery ajax set-cookie每次都会变
时间: 2023-08-12 20:35:42 浏览: 165
这可能是因为你的服务器在每次响应时返回了一个不同的 Set-Cookie 值。可以尝试在服务器端设置一个固定的 Cookie 值,或者在客户端通过设置 `xhrFields` 来保持 Cookie 不变。具体代码如下:
在客户端 jQuery Ajax 请求中添加 `xhrFields`:
```javascript
$.ajax({
url: 'url',
type: 'POST',
xhrFields: {
withCredentials: true
},
success: function(data) {
console.log(data);
}
});
```
在服务器端设置固定的 Cookie 值(以 PHP 为例):
```php
setcookie('cookie_name', 'cookie_value', time()+3600, '/', 'example.com', false, true);
```
相关问题
java修改ajax响应头401_当jquery ajax遇上401请求的解决方法
当使用jQuery Ajax发送请求时,如果遇到401响应,可以通过以下步骤解决:
1. 在Ajax请求中添加`xhrFields`属性,并设置其`withCredentials`为`true`。这将允许跨域请求时发送身份验证凭证(如cookie)。
```javascript
$.ajax({
url: 'your_url',
type: 'GET',
dataType: 'json',
xhrFields: {
withCredentials: true
},
success: function(data) {
console.log(data);
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(textStatus, errorThrown);
}
});
```
2. 在服务器端,对401响应设置响应头,以便浏览器可以将身份验证凭证发送到服务器。可以使用以下Java代码来设置响应头:
```java
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
response.setHeader("WWW-Authenticate", "Basic realm=\"myRealm\"");
```
其中,`response`是`HttpServletResponse`对象,`"myRealm"`是自定义的域名。
这样,在下一次Ajax请求时,浏览器将会自动发送身份验证凭证,从而解决401响应的问题。
请修改我这段代码<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> </head> <body> <div id="app"> <el-button type="primary" @click="addRequest">添加</el-button> <el-input v-model="username" placeholder="请输入内容"></el-input> <el-input v-model="password" placeholder="请输入内容"></el-input> </div> <script src="https://cdn.bootcdn.net/ajax/libs/vue/2.7.0/vue.js"></script> <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.4/jquery.js"></script> <!-- 引入样式 --> <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"> <!-- 引入组件库 --> <script src="https://unpkg.com/element-ui/lib/index.js"></script> <script> let MyVue = new Vue({ el: '#app', data() { return { username: "114514", password: "114514", } }, methods: { addRequest: () => { $.ajax({ url: http://localhost:8080/hello, // method: "POST", contentType: 'application/x-www-form-urlencoded', // data:{ // username:MyVue.username, // password:MyVue.password // }, success: (res) => { console.log(JSON.parse(res)); } }) } } }) </script> </body> </html>使得ajax获取response headers中的cookies
好的,根据您的需求,我对代码进行了修改,并添加了获取响应头中的 Cookies 的代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<div id="app">
<el-button type="primary" @click="addRequest">添加</el-button>
<el-input v-model="username" placeholder="请输入内容"></el-input>
<el-input v-model="password" placeholder="请输入内容"></el-input>
</div>
<script src="https://cdn.bootcdn.net/ajax/libs/vue/2.7.0/vue.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.4/jquery.js"></script>
<!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- 引入组件库 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script>
let MyVue = new Vue({
el: '#app',
data() {
return {
username: "114514",
password: "114514",
}
},
methods: {
addRequest: function() {
$.ajax({
url: "http://localhost:8080/hello",
type: "POST",
contentType: 'application/x-www-form-urlencoded',
xhrFields: {
withCredentials: true // 允许发送和接收 cookie
},
success: function(res, status, xhr) {
console.log(JSON.parse(res));
console.log(xhr.getResponseHeader('Set-Cookie')); // 获取响应头中的 Cookies
},
error: function(xhr, status, error) {
console.log(error);
}
})
}
}
})
</script>
</body>
</html>
```
需要注意的是,此方法只适用于在同一域名下的请求。如果您需要跨域获取 Cookies,需要在服务器端设置相关的 CORS 配置。另外,由于您的代码中使用了箭头函数,我将其改为了普通函数,以避免出现 this 指向错误的问题。
阅读全文