我有2个带有index.php的仪表板 1.offers.php 2.terminatio.php在提供页面上我有下面的脚本与myCtrl控制器来获取商品表的记录。它的工作。
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("http://www.adhr.adnacgroup.com/ADHRM/companyJson.php")
.then(function(response) {
$scope.names = $scope.names = response.data.service;});
getInfo();
function getInfo() {
$http.post('getTask.php').success(function(data) {
$scope.details = data;
})
}
现在,我在终止页面上使用相同的代码
var app = angular.module('myApp', []);
app.controller('termination', function($scope, $http) {
$http.get("http://www.adhr.adnacgroup.com/ADHRM/companyJson.php")
.then(function(response) {
$scope.names = $scope.names = response.data.service;
});
getInfo();
function getInfo() {
$http.post('gettermination.php').success(function(data) {
$scope.details = data;
})
}
在两个页面上我都使用不同的控制器。并在index.php上我打电话 NG-应用。我只能获取提供脚本。终止的脚本是 不工作。请帮助我同样的我是角色
的全新