作者:不曾孤独_815 | 来源:互联网 | 2023-09-18 13:36
前端:
后端:
当前端通过ajax调用后端接口的时候 如果想把COOKIE传给后端 需要显式设置:
1
| xhrFields: { withCredentials: true }, |
如下所示
1 2 3 4 5 6 7
| $.ajax({
type: “post”,
url: ‘http://back.foo.com/search’,
contentType : “application/json;charset=utf-8”,
dataType: “json”,
xhrFields: { withCredentials: true },
... |
不知道前端能不能不用显式做此设置 直接通过Nginx来实现此目的 如在请求头中动态的添加: