$ HTTP.DELETE无法在本地工作

时间:2017-08-18 12:25:44

标签: angularjs api

我想使用Aftership的API删除记录(包裹跟踪)

这是我的代码:

$scope.delTrack = function($slug, $code){
            $http({
            method: 'DELETE', 
            url: 'https://api.aftership.com/v4/trackings/' + $slug + '/' + $code, 
            headers: {
                'Access-Control-Allow-Methods' : 'GET, POST, OPTIONS, PUT, DELETE',
                'aftership-api-key': 'APIKEY',
                'Content-Type' : 'application/json'
                }
                })
                .then(function (response) {
                    });
        }

这在我的网页中不起作用,但是当我从网络检查器复制网址并将其插入www.hurl.it时,删除操作有效。可能我错过了Angular的标题或配置,但我不知道是什么......

删除网址 https://api.aftership.com/v4/trackings/bpost/RS775607677CN

API文档: https://www.aftership.com/docs/api/4/trackings/delete-trackings

我的GET和POST命令适用于api,DELETE不适用。

0 个答案:

没有答案