这当然有效,但是当我添加参数时它不会
<?php
//set POST variables
$url = $_POST['url'];
unset($_POST['url']);
$fields_string = "";
//url-ify the data for the POST
foreach($_POST as $key=>$value) {
$fields_string .= $key.'='.$value.'&';
}
$fields_string = rtrim($fields_string,'&');
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST, 1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
//execute post
$result = curl_exec($ch);
//close connection
curl_close($ch);
当我使用jquery尝试ajax调用时,
var data = "url=http://www.domain/ajax/set.php&id=1413&index=0&action=add";
$.ajax({
url: "proxy.php",
data: data,
type: "POST",
success: function(data, textStatus, jqXHR) {
console.log('Success ' + data);
},
error: function(jqXHR, textStatus, errorThrown) {
console.log('Error ' + jqXHR);
}
});
应返回null或“selected”。 。 。 selected
如果在第一次运行时成功并尝试再次运行,但两者都返回null,当然不包括success
字。
我很确定参数是正确的,我用邮递员来检查。
答案 0 :(得分:1)
set.php&id=1413
^
你的意思是?
set.php?id=1413
^