我正在尝试使用$http.get
& $http.post
。但是,它仅适用于核心PHP(即链接以.php结尾)。
我试过但是无法使用PHP的MVC模型完成它。
例如,使用此代码
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<p>Today's welcome message is:</p>
<h1>{{myWelcome}}</h1>
</div>
<p>The $http service requests a page on the server, and the response is set as the value of the "myWelcome" variable.</p>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("http://www.w3schools.com/angular/customers.php")
.then(function(response) {
$scope.myWelcome = response.data;
});
});
</script>
</body>
</html>
此处链接以.php结尾,代码有效。但是如果你试图将链接更改为不以扩展名(.php,.htm)结尾的东西,那么尽管该文件是php文件(但这次是使用php的MVC模型),代码仍然不能正常工作