> 백엔드 개발 > PHP 튜토리얼 > javascript - js는 PHP의 반환 결과를 가져옵니다.

javascript - js는 PHP의 반환 결과를 가져옵니다.

WBOY
풀어 주다: 2016-08-04 09:21:58
원래의
2287명이 탐색했습니다.

<code> $.ajax({
            url: '/ajax.php',
            type: 'POST',
            contentType: 'application/json; charset=UTF-8',
            crossDomain: true,
            dataType: 'json',
            data: JSON.stringify(data),
            success: function(response) {
            
                alert(response);
                console.log(response);

                $("#spinny").hide();

                var data = response.hits.hits;
                console.log(data);
                var source = null;

                if (data.length > 0) {
                    $("#resultsHeader").html(data.length + " Results").show();
                    for (var i = 0; i < data.length; i++) {
                        source = data[i].fields;
                    }

                } else {
                  //$("#resultsHeader").html("No Results").show();
                    showErrorMessage("#error-container", "<strong>Ooops!</strong> No results found! Please try again.","alert-danger", true, 3000);
                }

            },
            error: function(jqXHR, textStatus, errorThrown) {
                var jso = jQuery.parseJSON(jqXHR.responseText);
                error_note('section', 'error', '(' + jqXHR.status + ') ' + errorThrown + ' --<br />' + jso.error);
            }
            </code>
로그인 후 복사
로그인 후 복사

위의 js 제출 과정입니다.

다음은 ajax.php의 코드입니다

<code>

<?php
    
    require_once('bootstrap.php');
    
    $url                   = ELASTICSEARCH_URL.'/test/_search';
    $content               = file_get_contents('php://input');
    $ch                    = curl_init($url);
    curl_setopt($ch,       CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch,       CURLOPT_POSTFIELDS, $content);
    curl_setopt($ch,       CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch,       CURLOPT_CONNECTTIMEOUT, 0);
    curl_setopt($ch,       CURLOPT_TIMEOUT, 5000);
    curl_setopt($ch,       CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Content-Length: ' . strlen($content)));
    
    $result= curl_exec($ch);
    $arr = json_decode($result);
    if ($arr->hits->total>0) {
        foreach ($arr->hits->hits as $es) {
            $source = $es->_source;
            foreach ($source as $key => $value) {
                echo "$key".":"."$value";
            }
        }
    }
    ?>
                
                </code>
로그인 후 복사
로그인 후 복사

질문: js는 정상적으로 PHP에 대한 요청을 생성할 수 있지만 $result 또는 $key에 관계없이 PHP의 반환 값을 가져올 수 없습니다.
js 오류 보고서를 보면 다음과 같은 메시지가 표시됩니다

<code>"VM2900:1 Uncaught SyntaxError: Unexpected token y in JSON at position 1"
            </code>
로그인 후 복사
로그인 후 복사

답글 내용:

<code> $.ajax({
            url: '/ajax.php',
            type: 'POST',
            contentType: 'application/json; charset=UTF-8',
            crossDomain: true,
            dataType: 'json',
            data: JSON.stringify(data),
            success: function(response) {
            
                alert(response);
                console.log(response);

                $("#spinny").hide();

                var data = response.hits.hits;
                console.log(data);
                var source = null;

                if (data.length > 0) {
                    $("#resultsHeader").html(data.length + " Results").show();
                    for (var i = 0; i < data.length; i++) {
                        source = data[i].fields;
                    }

                } else {
                  //$("#resultsHeader").html("No Results").show();
                    showErrorMessage("#error-container", "<strong>Ooops!</strong> No results found! Please try again.","alert-danger", true, 3000);
                }

            },
            error: function(jqXHR, textStatus, errorThrown) {
                var jso = jQuery.parseJSON(jqXHR.responseText);
                error_note('section', 'error', '(' + jqXHR.status + ') ' + errorThrown + ' --<br />' + jso.error);
            }
            </code>
로그인 후 복사
로그인 후 복사

위의 js 제출 과정입니다.

다음은 ajax.php의 코드입니다

<code>

<?php
    
    require_once('bootstrap.php');
    
    $url                   = ELASTICSEARCH_URL.'/test/_search';
    $content               = file_get_contents('php://input');
    $ch                    = curl_init($url);
    curl_setopt($ch,       CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch,       CURLOPT_POSTFIELDS, $content);
    curl_setopt($ch,       CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch,       CURLOPT_CONNECTTIMEOUT, 0);
    curl_setopt($ch,       CURLOPT_TIMEOUT, 5000);
    curl_setopt($ch,       CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Content-Length: ' . strlen($content)));
    
    $result= curl_exec($ch);
    $arr = json_decode($result);
    if ($arr->hits->total>0) {
        foreach ($arr->hits->hits as $es) {
            $source = $es->_source;
            foreach ($source as $key => $value) {
                echo "$key".":"."$value";
            }
        }
    }
    ?>
                
                </code>
로그인 후 복사
로그인 후 복사

질문: js는 정상적으로 PHP에 대한 요청을 생성할 수 있지만 $result 또는 $key에 관계없이 PHP의 반환 값을 가져올 수 없습니다.
js 오류 보고서를 보면 다음과 같은 메시지가 표시됩니다

<code>"VM2900:1 Uncaught SyntaxError: Unexpected token y in JSON at position 1"
            </code>
로그인 후 복사
로그인 후 복사

PHP에서 반환한 값이 json 형식이 아니어서 js가 이를 구문 분석할 수 없습니다

에코 json_encode()

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿