gpt4 book ai didi

php - Javascript POST 不起作用 - 将 Javascript 数组发送到 PHP

转载 作者:行者123 更新时间:2023-11-28 03:04:13 24 4
gpt4 key购买 nike

我知道 SO 和网络上有相当多的条目,但我就是无法开始工作 - 任何帮助将不胜感激。

所以我有一个 Javascript 数组,我试图将其传递给 PHP。

我有一个小的 JS 函数来首先发布它,所以:

function sendToPHP() {
$.post("index.php", { "variable": toSearchArray });
}

然后在页面下方,我有 PHP:

<?php 
$myval = $_POST['variable'];
print_r ($myval);
?>

*照片就在那里供我检查。

任何想法 - 仅供引用,我正在使用 MAMP,因此它的 localhost:8888/index.php。这是否会导致 URL 不正确的问题?

谢谢。

最佳答案

您对ajax的工作原理存在误解。虽然 jquery 使它变得容易,但它仍然不是自动的。您应该找到有关使用 jquery 进行 ajax 的教程,但如果您只想将数组发送到 php 并在屏幕上查看输出,则可以使用以下内容:

index.php

<html>
<head>
<title>Test</title>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//attach to the button a click event
$('#btn').click(function(){
//get the value from the textbox
var txt=$('#txt').val();
//if txt is blank, alert an error
if(txt == ''){
alert("Enter some text");
} else {
//send txt to the server
//notice the function at the end. this gets called after the data has been sent
$.post('catcher.php', {'text':txt}, function(data){
//now data is an object, so put the message in the div
$('#response').text(data.message);
}, 'json');
}
});
});
</script>
</head>
<body>
<input type="text" id="txt">
<input type="button" id="btn">
<pre id="response" style="overflow:auto;width:800px;height:600px;margin:0 auto;border:1px solid black;">&nbsp;</pre>
</body>
</html>

捕手.php:

<?php
//if something was posted
if(!empty($_POST)){
//start an output var
$output = array();

//do any processing here.
$output['message'] = "Success!";

//send the output back to the client
echo json_encode($output);
}

最好使用 2 个文件,一个供用户加载以启动 ajax 调用,另一个页面用于处理 ajax 调用。发送数组的工作方式相同,只需将获取文本框值替换为发送数组即可。

关于php - Javascript POST 不起作用 - 将 Javascript 数组发送到 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60750637/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com