uniapp 调用外部接口代码
在uniapp中调用外部接口,可以使用uni.request()函数。该函数可用于发起HTTP请求并获取响应数据。
以下是一个示例代码:
uni.request({
url: 'http://api.example.com/getData',
method: 'GET',
dataType: 'json',
success: function(res) {
console.log(res.data);
},
fail: function(res) {
console.log(res.errMsg);
}
});
在上面的代码中,我们使用了uni.request()函数来请求一个名为“getData”的接口。该接口返回的数据类型为JSON格式。在请求成功后,我们通过console.log()函数打印出了响应数据。如果请求失败,则会输出错误信息。
需要注意的是,在使用uni.request()函数时,需要根据实际情况设置请求的URL、请求方法、数据类型等参数,并根据接口返回的数据格式进行相应的处理。
原文地址: https://www.cveoy.top/t/topic/E0T 著作权归作者所有。请勿转载和采集!