Browse Source

fix(axios): option `withToken` not work

pull/836/head
无木 5 years ago
parent
commit
d509e897be
  1. 2
      src/utils/http/axios/index.ts

2
src/utils/http/axios/index.ts

@ -122,7 +122,7 @@ const transform: AxiosTransform = {
requestInterceptors: (config, options) => {
// 请求之前处理config
const token = getToken();
if (token && options?.requestOptions?.withToken !== false) {
if (token && (config as Recordable)?.requestOptions?.withToken !== false) {
// jwt token
config.headers.Authorization = options.authenticationScheme
? `${options.authenticationScheme} ${token}`

Loading…
Cancel
Save