学习调用API

wx 15天前 246

调用get请求:

    import curl;

    import console;

    var http = curl.easy();

    var str = http.get("http://www.aardio.com");

    console.log(str);

    console.pause();

调用post请求:

    import curl;

    import console;

    var http = curl.easy();

    console.showLoading("正在连接网页");

    var str = http.post("http://httpbin.org/post"

            ,"username=jacen&password=123456");

    console.log(str);

    console.pause();

        

请求参数也可以弄成表:

    var http = curl.easy();

    var str = http.post("http://httpbin.org/post" ,{

    username = "jacen";

    password="123456";

    });

    console.log(str);

     

       

    

    

最新回复 (5)
  • 光庆 14天前
    2 2
    贵在坚持
  • zhhyit 13天前
    1 3
    加油🍒
  • wx 10天前
    1 4
    此楼层已删除
  • wx 10天前
    0 5
    光庆 贵在坚持
    谢谢
  • wx 10天前
    0 6
    zhhyit 加油🍒
    谢谢,一起加油
返回