$ http.get()。then()vs success()

时间:2016-12-14 20:34:03

标签: angularjs

在此链接中:http://www.w3schools.com/angular/tryit.asp?filename=try_ng_tables_index

$http.get("http://www.w3schools.com/angular/customers.php")
    .then(function (response) {$scope.names = response.data.records;});
});
  1. 为什么我将.then()更改为success()无效?因为我之前看到success(function(){})有效。
  2. 为什么我不能改变回应'到'数据',然后是$scope.names = data

0 个答案:

没有答案