-1
如何使用所獲取的數據customersController
在AnotherCustomersController
混淆在控制器
function customersController($scope, $http) {
$http.get("http://www.w3schools.com//website/Customers_JSON.php")
.success(function(response) {$scope.names = response;});
}
function AnotherCustomersController($scope){
//What should I do here??
}
您需要張貼代碼 – PSL 2014-09-05 20:28:17
請檢查這個答案http://stackoverflow.com/a/12233991/1223357 抽象邏輯負責提取數據到可重用的服務。 – Teq1 2014-09-05 21:15:23