当前位置:网站首页>Solve the problem of uni in uni app Request sent a post request without response.

Solve the problem of uni in uni app Request sent a post request without response.

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

First, in the postman It is tested that the request can be sent and the return data can be received .

And then in uni-app Use uni.request send out POST There is no response to the request .

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

After some inquiry, I know uni.request send out POST Request needs to add

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

After adding

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

Can be successfully sent .

 

 

原网站

版权声明
本文为[No Bug]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/188/202207071842366534.html