ajax 데이타 받는 곳 쿼리문 확인할 수 있는 방법은 뭐가 있을까요?
본문
$.ajax({
type:"POST",
url : "test.php",
data:data,
success:function(res){
..
.
중략
이런식으로 데이터를 test.php 로 넘겼는데요,
sql update 작동에 뭔가 오류가 있네요.
test.php 쪽 sql 구문 확인할 수 있는 방법 뭐가 있을까요?
답변 5
$.ajax({
type:"POST",
url : "test.php",
data:data,
success:function(res){
밑에 console.log(res); 를 하셔도 되고...
test.php 자체 적으로 echo $sql; 을 찍으신 후
크롬(개발자도구) 에서 Network 영역에서 동작한 페이지를 눌러보시면 echo 로 찍으신 내역들이 노출됩니다.
둘중 하나 편하신걸로 보시면 됩니다.
test 파일을 내 결과를 echo 하시고
독립적으로 실행하셔서 채크하시면됩니다.
아작스요청시 발생하는 오류이기때문에 console.log()로 서버응답을 살펴보아야 합니다.
때문에
$.ajax({
type:"POST",
url : "test.php",
data:data,
success:function(res){
console.log(res);
}
로 하고 웹브라우저에서 F12건을 눌러 개발자방식에서 콘솔탭에 가면 서버응답상황을 고찰하실수 있습니다.
단순하게 기본 서브밋 형태로 확인할수 있습니다.
<form method="post" action="test.php">
<input type="hidden" name="data_a" value="data_a" />
<input type="hidden" name="data_b" value="data_b" />
<input type="hidden" name="data_c" value="data_c" />
<input type="submit" />
</form>
test.php에서
echo $sql;
으로 쿼리를 나오게 하신후에..
$.ajax({
type:"POST",
url : "test.php",
data:data,
success:function(res){
alert(res);
이렇게 경고창으로 res를 출력하시면 쿼리를 확인하실수 있습니다.