以角度js傳遞$ http的參數。Angular js的HTTP參數傳遞
$http({
method: 'get',
url: 'http://mmres.baganthandehotel.net/mmresadmin/invoicejson.php',
data: $.param({'chk': '2015-06-02'}),
headers: { 'Content-Type': 'application/json; charset=utf-8'}
})
.success(function(data){
$scope.list = data;
console.log($scope.list);
}),
我不能接受的值CHK($ _ GET [ 'CHK'])從我的服務器side.Why不能接收這些參數?