我正在尝试从$ 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);