axios.min.js:1 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'indexOf')
时间: 2023-08-25 22:16:29 浏览: 234
axios.min.js
在你提供的引用中,主要讨论了axios的使用和加载方式以及在请求拦截器中的配置。从错误提示来看,可能是因为在axios.min.js文件中的某处尝试读取了一个未定义的属性'indexOf',导致了TypeError错误。
根据引用中的提示,正确的axios加载方式是通过将axios赋值给Vue.prototype.axios来实现。而引用中提到,如果是非Vue官方库或者不是为Vue编写的插件,则不支持使用Vue.use()方式加载,而应该使用new Vue()方式。
此外,引用中提到在axios请求拦截器中添加代码return config可以对请求进行拦截和配置。
综上所述,如果你遇到了"Cannot read properties of undefined (reading 'indexOf')"的错误,可能是由于axios的加载方式或请求拦截器配置问题导致的。你可以检查代码中是否使用了正确的加载方式,并确保在请求拦截器中正确配置了拦截和返回config的代码。<em>1</em><em>2</em><em>3</em>
#### 引用[.reference_title]
- *1* *2* [Vue报错: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘protocol‘)](https://blog.csdn.net/weixin_55971433/article/details/125529573)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}} ] [.reference_item]
- *3* [Vue报错:Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘cancelToken...](https://blog.csdn.net/weixin_42343966/article/details/128454897)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}} ] [.reference_item]
[ .reference_list ]
阅读全文