解决uni-app中uni.request发送POST请求没有反应。

首先在postman测试了可以发送请求并且接收到返回数据。

解决uni-app中uni.request发送POST请求没有反应。_第1张图片

然后在uni-app使用uni.request发送POST请求就没有反应。

uni.request({
                    url: "http://1.14.142.212:8080/tobraille",
                    method: "POST",
                    data: {
                        text: "hello get",
                        language: "en-us"
                    }
                });

经过一番查询知道了uni.request发送POST请求需要加上

header: {
                        'content-type': 'application/json;charset:utf-8'
                    }

加上之后

uni.request({
                    url: "http://1.14.142.212:8080/tobraille",
                    method: "POST",
                    header: {
                        'content-type': 'application/json;charset:utf-8'
                    },
                    data: {
                        text: "hello get",
                        language: "en-us"
                    }
                });

可以成功发送。

 

 

你可能感兴趣的:(uni-app,学习笔记,踩坑分享,大数据)