我正在用角度像ajax做一个post请求:
angular.module("gameApp").controller("firstPageCtrl", function($scope,$http) {
$scope.doLogin = function() {
$http.post("lib/test.php", {username: $scope.username, password: $scope.password}).success(function(data) {
console.log(data);
}).error(function(data) {
console.log(data);
});
};
});
如您所见,我将lib / test.php称为URL,处理数据。但是,我想引用test.php中的方法,并处理方法中的数据。我怎么能这样做?
答案 0 :(得分:0)
Ajax只允许您指定URL。
服务器端代码可以将该URL转换为您想要的内容。
创建一个新的PHP脚本,其中包含您要调用的函数,然后调用它。使用该脚本的URL而不是test.php
。