尝试将带有 ajax 的变量发送到 php。
js:
var test1 = "test"
$.ajax({
type : "POST",
url : "getid.php",
data: {test1 : test1},
success: function() {
console.log("message sent!");
}
});
“消息发送!” 出现在控制台中
php:
<?php
$test1 = $_POST['test1'];
echo $test1;
?>
错误信息:
Notice: Undefined index: test1...
我真的不明白我在这里做错了什么......有什么想法吗?
更新*时做`
$.ajax({
type : "POST",
url : "getid.php",
data: {"test1" : test1},
success: function(msg) {
console.log("message sent!");
console.log(msg);
}
});
这记录了“测试”
虽然仍然在 php 中遇到相同的错误..