在 Javascript 和 PHP 之间传递数据
在 Web 应用程序中,经常需要在客户端 Javascript 代码和 PHP 之间交换数据。服务器端 PHP 脚本。本文演示了如何建立此通信通道并双向传递数据。
将数据从 Javascript 传递到 PHP
要将数据从 Javascript 发送到 PHP,您可以向 PHP 脚本发出 HTTP 请求。一种方法是通过 XMLHttpRequest 对象:
<code class="js">// Data to be sent to PHP script const data = {tohex: 4919, sum: [1, 3, 5]}; // Create an XMLHttpRequest object const httpc = new XMLHttpRequest(); // Open a POST request to the PHP script httpc.open("POST", "server.php", true); // Set the request header to specify the content type httpc.setRequestHeader("Content-Type", "application/json"); // Send the data to the PHP script httpc.send(JSON.stringify(data)); // Process the response from the PHP script httpc.onreadystatechange = function() { if (httpc.readyState === 4 && httpc.status === 200) { console.log(httpc.responseText); } };</code>
将数据从 PHP 传递到 Javascript
要将数据从 PHP 发送到 Javascript,您可以使用echo 语句:
<code class="php">// Retrieve data from the HTTP request body $data = json_decode(file_get_contents("php://input")); // Calculate the hex value and sum $tohex = base_convert($data->tohex, 10, 16); $sum = array_sum($data->sum); // Echo the results echo json_encode([$tohex, $sum]);</code>
Javascript 脚本可以使用 JSON.parse() 处理响应。
以上是如何在Javascript和PHP之间无缝传输数据?的详细内容。更多信息请关注PHP中文网其他相关文章!