我需要將URL參數傳遞給控制器。在下面的URL中,我需要將參數ID傳遞給控制器。如何將URL參數傳遞給控制器
http://localhost/branch/more.php?id=20
傳遞ID URL參數,我下面給出的控制器。
app.controller('customersCtrl', function($scope, $http) {
$http.get("message.php?id=").then(function (response) {
$scope.myData = response.data.message;
});
因此,message.php?ID =參數這裏 ID必須是這樣的。
爲什麼答案是刪除? – Sajeetharan