在$ scope函数中调用$ http.post无法正常工作

时间:2019-05-29 08:16:13

标签: angularjs api http scope

我正在尝试从$ scope函数调用API网址,但未调用它,并且控制台上没有错误

这是我的代码: 1- angularjs函数:

 $scope.AddPin = function (Xlocation, Ylocation) {
             debugger;
            var sceneid = AframeAPIController1.sceneID;
            var data = { id: sceneid};
            $http.post('/Umbraco/Api/AframeVrApi/InsertNewPin', JSON.stringify(data));

2-在我的HTML页面中从JS调用函数:


var scope = angular.element(document.getElementById('fulldiv')).scope();
 scope.AddPin(X, Y);

0 个答案:

没有答案