我试图用axios向php发送一个帖子请求。我有点失落,对这个东西还是新手。 在我的react.js我有这个。我试图发送searchTerm的值
axios.post(`http://www.fake.com/script.php`,{
searchTerm:'test',
})
.then(function(response){
console.log(response)
})
.catch(function(error){
console.log(error);
})
在我在我的网站上托管的script.php文件中,我有:
if(!empty($_POST)) {
$searchTerm = $_POST["searchTerm"];
echo $searchTerm;
echo '<script>console.log('.$searchTerm.')</script>';
}
在实际页面上没有回应。
在控制台上,我有3件事。