当前位置:   article > 正文

axios 1.4.0 ts 自定义添加配置_对象字面量只能指定已知属性,并且“account”不在类型“axiosrequestconfig

对象字面量只能指定已知属性,并且“account”不在类型“axiosrequestconfig

项目场景:

项目需要在请求中添加配置参数,判断时候弹出message


问题描述

类型“InternalAxiosRequestConfig<any>”上不存在属性“showSuccessMessage”;

@Override
// 显示 200  message
const showSuccessMessage = ref<string | undefined>("true")

	// 请求拦截器
request.interceptors.request.use(
    (config) => {
        showSuccessMessage.value = config?.showSuccessMessage || "true"
        ...
        return config;
    },
    (error) => {
        // 对请求错误做些什么
        Promise.reject(error);
    }
);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

类型“{ method: string; url: string; showSuccessMessage: string; }”的参数不能赋给类型“AxiosRequestConfig<any>”的参数。 对象字面量只能指定已知属性,并且“showSuccessMessage”不在类型“AxiosRequestConfig<any>”中。

export function getS() {
    return http.request({
        method: "get",
        url: "/A",
        showSuccessMessage: "false"
    },);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

解决方案:

// node_modules\axios\index.d.ts

export interface AxiosRequestConfig<D = any> {
  showSuccessMessage?: string;
}
  • 1
  • 2
  • 3

// node_modules\axios\lib\core\mergeConfig.js

  const mergeMap = {
    showSuccessMessage: defaultToConfig2,
  }
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/299785
推荐阅读
相关标签
  

闽ICP备14008679号