POST를 angularj로 전송하려면 어떻게 해야 하나요? angularjs HTTP post service를 사용하여 여러 파라미터를 전송하고 싶습니다. 클라이언트측 코드는 다음과 같습니다. $http.post("http://localhost:53263/api/Products/", [$scope.product, $scope.product2]). then(function (data, status, headers, config) { alert("success") }, function (data, status, headers, config) { alert("error") }); 서버측 코드는 다음과 같습니다. // POST api/ public void Post([FromBody]Product produc..