代码之家  ›  专栏  ›  技术社区  ›  Sagar T

如何从正在使用的脚本调用其他应用程序API

  •  0
  • Sagar T  · 技术社区  · 5 年前

    我用Python中的Django编写了一些API,现在我想从服务调用这个API 根据剧本 .

    我尝试使用 jQuery 但这对我来说不是wokring,我在网上搜索他们说用的 $j 正如jQuery在 马上服务 但它也不起作用。

    我想测试我的API,它是否工作正常。

    如果我遗漏了任何步骤,或者有人知道我是如何实现的,请告诉我或纠正我。

    1 回复  |  直到 5 年前
        1
  •  0
  •   Gordon Mohrin    5 年前

    你应该使用普通的javascript。如果你是从客户那里打电话,这应该可以:

    var xhr = new XMLHttpRequest();
    xhr.onreadystatechange = function() {
        if (xhr.readyState == XMLHttpRequest.DONE) {
            alert(xhr.responseText);
        }
    }
    xhr.open('GET', 'http://example.com', true);
    xhr.send(null);
    

    看看这个帖子: How to get the response of XMLHttpRequest?

    推荐文章