场景
在unaipp中使用axios
npm i axios
下载完成后 然后在页面中使用
axios.get(“http://3000/searchS”)
然后报错 Adapter http’ is not available in the build
原因
在 UniApp 中使用 Axios 发送 HTTP 请求时,如果出现错误 “Adapter http’ is not available in the build”,这通常是因为你没有在 main.js 文件中正确配置 Axios 适配器。
解决方案
确保已经安装了axios,在 main.js 文件中导入并配置 Axios。在你的 main.js 文件中添加以下代码:
import Vue from 'vue'
import axios from 'axios'
Vue.prototype.$http = axios
使用方式
在需要发送 HTTP 请求的组件中,使用 $http 对象来发起请求。例如,在一个 Vue 组件中:
export default {
methods: {
fetchData() {
this.$http.get('/api/data')
.then(response => {
// 处理响应数据
})
.catch(error => {
// 处理错误
})
}
}
}
后言文章来源:https://www.toymoban.com/news/detail-674630.html
干就完了文章来源地址https://www.toymoban.com/news/detail-674630.html
到了这里,关于uniapp中引入axios的错误?的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!