概述
网络请求
在uni中可以调用uni.request方法进行请求网络请求
需要注意是:在小程序中网络相关的API在使用前需要配置域名白名单。
发送get请求
<template>
<view>
<button @click="sendGet">发送请求</button>
</view>
</template>
<script>
export default{
methods:{
sendGet(){
uni.request({
url:'http://localhost:8080/home/swiper',
success(res){
console.log(res)
}
})
}
}
}
</script>
uni.request(OBJECT)
发起网络请求。
OBJECT参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 | 平台差异说明 |
---|---|---|---|---|---|
url | String | 是 | 开发者服务器接口地址 | 5+App,不支持ArrayBuffer类型 | |
data | Object/String/ArrayBuffer | 否 | 请求的参数 | 5+App,不支持ArrayBuffer类型 | |
header | Object | 否 | 设置请求的header,header中不能设置Referer。 | ||
method | String | 否 | GET | ||
success | Function | 否 | 收到开发者服务成功返回的回调函数 |
<button @click="get">发送get请求</button>
methods:{
get(){
uni.request({
url:"http://localhost:8080/getposts",
success(res) {
console.log(res)
}
})
}
},
最后
以上就是端庄小伙为你收集整理的uni-app之网络请求(八)网络请求的全部内容,希望文章能够帮你解决uni-app之网络请求(八)网络请求所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复