9、uniapp中发送请求

uni.request(OBJECT)

用这个方法即可发送网络请求。

在各个小程序平台运行时,网络相关的 API 在使用前需要配置域名白名单。

OBJECT 参数说明

image

如:

<template>
	<view>
		<button v-on:click="SendGet">发送请求</button>
	</view>
</template>

<script>
	export default{
		data(){
			return {}
		},
		methods:{
			SendGet(){
				uni.request({
					url:'https://autumnfish.cn/api/joke/',
					method:'GET',
					success:function(data){
						console.log(data);
					}
				})
			}
		}
	}
</script>

如果运行在小程序的话,可能会报错。报错就进行如下设置:
image

posted @ 2022-06-20 22:14  青仙  阅读(1719)  评论(0编辑  收藏  举报