我目前正在尝试将字符串发送到一个php脚本,该脚本最终会返回一个JSON文件。 这是我用来发送字符串的代码:
var str = "testString";
$.post("php/getTimes.php", str,
function(data){
console.log(data.name);
console.log(data.time);
}, "json");
在'getTimes'php文件中,我只是试图接收我传递的'str'变量。任何想法如何做到这一点?看起来应该很简单。
答案 0 :(得分:4)
您必须使用序列化字符串命名POST data
中的属性:
var data = "str=testString";
$.post("php/getTimes.php", data, function(json) {
console.log(json.name);
console.log(json.time);
}, "json");
或使用地图:
var data = {
str : "testString"
};
$.post("php/getTimes.php", data, function(json) {
console.log(json.name);
console.log(json.time);
}, "json");
要在PHP中使用以下处理此变量:
$str = $_POST['str'];
答案 1 :(得分:2)
在getTimes.php中:
<?php
$var = $_POST['string']; // this fetches your post action
echo 'this is my variable: ' . $var; // this outputs the variable
?>
同时调整:
$.post("php/getTimes.php", str,
到
$.post("php/getTimes.php", { string: str },