当前位置:网站首页>解决uni-app中uni.request发送POST请求没有反应。

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

2022-07-07 21:33:00 No Bug

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

然后在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"
                    }
                });

可以成功发送。

 

 

原网站

版权声明
本文为[No Bug]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_61672548/article/details/125637286