Javascript와 PHP 간 데이터 전달
웹 개발에서는 클라이언트(Javascript)와 서버( PHP). 양방향 통신을 구현하는 방법은 다음과 같습니다.
Javascript에서 PHP로
Javascript 스크립트에서 PHP 페이지로 데이터를 전달하려면 HTTP를 사용할 수 있습니다. 요구. 이는 다음 예에서 볼 수 있듯이 XMLHttpRequest 개체를 사용하여 수행할 수 있습니다.
<code class="javascript">const httpc = new XMLHttpRequest(); const url = "get_data.php"; httpc.open("POST", url, true); httpc.onreadystatechange = function() { if(httpc.readyState == 4 && httpc.status == 200) { console.log(httpc.responseText); // process the response from PHP } }; const params = {tohex: 4919, sum: [1, 3, 5]}; httpc.send(JSON.stringify(params)); // send the data as JSON</code>
PHP에서 Javascript로
PHP 스크립트에서 다시 Javascript 스크립트는 Javascript가 처리할 수 있는 응답을 생성해야 합니다. 이 응답은 JSON 또는 일반 텍스트와 같은 다양한 형식일 수 있습니다. 다음은 JSON 응답을 생성하는 예입니다.
<code class="php">$tohex = base_convert(4919, 16); $sum = array_sum([1, 3, 5]); $response = ["tohex" => $tohex, "sum" => $sum]; echo json_encode($response); // output the JSON response</code>
사용 예
PHP 스크립트에 요청하고 응답을 받는 Javascript 스크립트의 예는 다음과 같습니다. 다음과 같습니다.
<code class="javascript">async function requestData() { const response = await fetch("get_data.php", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({tohex: 4919, sum: [1, 3, 5]}) }); const {tohex, sum} = await response.json(); // parse the JSON response console.log(tohex, sum); // use the data returned from PHP } requestData();</code>
이러한 기술을 결합하면 Javascript와 PHP 간에 데이터를 효과적으로 전달하여 클라이언트와 서버 간의 동적 상호 작용을 촉진할 수 있습니다.
위 내용은 JavaScript와 PHP 간에 데이터를 어떻게 전달합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!