em muốn hỏi về cách truyền param bằng phương thức post trong angular js.
app.controller("registryController", function($scope, $http, $window) {
$scope.registry = function() {
var data = {username: $scope.username, password: $scope.password};
$http({
method: 'POST',
url: 'http://localhost:9080/EX09_22112018_SERVLET_RESTFUL_API/rest/userservice/registry',
data: JSON.stringify(data)
}).then(function(response) {
var message = response.data;
$window.alert(message);
})
}
})
em không tìm thấy cách gửi param theo request header, và có những cách nào để gửi param mà không hiển thị thông tin lên url, có phải khi gửi như thế này thì url sẽ có dạng như: