HTTP模块不执行

时间:2019-05-16 14:36:34

标签: nativescript

我正在尝试从android应用中的服务器接收字符串,但是代码无法执行,甚至console.log也无法显示任何内容

const httpModule = require("tns-core-modules/http");
function requestList()
    {


httpModule.getString("https://******.php").then(

(r) => {console.log("I am at the request function ");//This line is not printed
 },
(e) => {console.log("I am at the request function too ");//This is not printed too 
        }
);


console.log("This the end of the function"); //This line is printed OK
    }

我没有收到与此相关的任何错误消息

至少必须显示console.log,这样我才能知道该模块实际上正在我的应用程序中工作

1 个答案:

答案 0 :(得分:0)

因此,在创建了一个游乐场项目之后,我能够与服务器进行通信, 我也应该在原始代码中使用wait和async,所以毕竟这是一个新手错误