如何在没有打字稿的情况下交流后端

时间:2019-06-19 16:22:59

标签: angularjs angularjs-http

我正在尝试更改https://akveo.github.io/blur-admin/项目。它的控制器都是js格式,我不能将它们迁移到Typescript。所以现在我无法将任何库导入到我的控制器中(我想使用socket.io-client来创建Java后端)。我正在尝试此代码

$http.get('http://localhost/aa.php').then(function (response) {
        $scope.period_day = response;
    }).catch(function (err) {
        console.log(err);
    });

但结果是:

Object { data: null, status: -1, headers: headersGetter/<(), config: Object, statusText: "" }

但是当我在浏览器中打开此URL时,它可以正常工作。现在我只想发出http请求来传达我的后端,但我没有任何解决方案。 (BlurAdmin项目是使用gulp开发的)

0 个答案:

没有答案