提交 1d9ea0a2 authored 作者: 钟是志's avatar 钟是志

2023年11月28日 顺哥钉钉上说的 延职 要传成 include;

上级 09e606ab
...@@ -144,7 +144,8 @@ export async function requestFileInfo(url, datas) { ...@@ -144,7 +144,8 @@ export async function requestFileInfo(url, datas) {
// axxx: `select * from user123 where id = 1`, // axxx: `select * from user123 where id = 1`,
}, },
method: 'POST', method: 'POST',
credentials: 'omit', credentials: 'include',
// 2023年11月28日 顺哥说的 延职 要传成 include;
mode: 'cors', mode: 'cors',
body: formData, body: formData,
}) })
......
...@@ -121,7 +121,8 @@ const errorHandler = error => { ...@@ -121,7 +121,8 @@ const errorHandler = error => {
const umiRequest = extend({ const umiRequest = extend({
errorHandler, // 默认错误处理 errorHandler, // 默认错误处理
credentials: 'omit', // 默认请求是否带上cookie credentials: 'include', // 默认请求是否带上cookie
// 2023年11月28日 顺哥说的 延职 要传成 include;
mode: 'cors', mode: 'cors',
}); });
......
...@@ -162,8 +162,9 @@ export default function request( ...@@ -162,8 +162,9 @@ export default function request(
} }
const defaultOptions = { const defaultOptions = {
credentials: 'omit', // 确保浏览器不在请求中包含凭据 // 用这个本地访问北电科会跨域 // credentials: 'omit', // 确保浏览器不在请求中包含凭据 // 用这个本地访问北电科会跨域
// credentials: 'include', // 为了让浏览器发送包含凭据的请求(即使是跨域源) // 用这个 本地访问黔南会跨域 credentials: 'include', // 为了让浏览器发送包含凭据的请求(即使是跨域源) // 用这个 本地访问黔南会跨域
// 2023年11月28日 顺哥说的 延职 要传成 include;
mode: 'cors', mode: 'cors',
}; };
let newOptions = { ...defaultOptions, ...options }; let newOptions = { ...defaultOptions, ...options };
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论