今天第一天用uniapp进行本地调试,H5端报跨域错误,然后下了插件,还是报跨域错误,所以这个插件怎么用的?
而且我想问APP是没有跨域问题的,只是在H5上有这个问题
在APP上进行真机测试可以请求到本地数据吗?
本地接口:/api/v1/sales/customs/check_tel_is_only
uni.request({
url: 'http://192.168.0.133'+url,
data,
methods,
header: {
"app-type": type //自定义请求头信息
},
success: res => {
console.log(res.data);
if (res.code == 0) {
resolve(res.data);
} else if (res.code == 1) {
resolve(res.data);
}
}
});