我不知道爲什麼我得到這個奇怪的錯誤!未定義的索引請求
PHP公告:未定義指數:REFID在/var/www/echo.php第5行
我得到的控制檯輸出,但不能呼應refId
。我在這裏做錯了什麼嗎?
<?php
$rollUrl = 34;
$refId = $_POST['refId'];
echo $refId;
?>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$.ajax({
url:'echo.php',
type: 'POST',
data: { 'refId': "<?php echo $rollUrl ?>" },
success: function(response){
console.log('Getting response');
}
});
</script>
如果這都是一個文件,那麼在發送POST之前'$ _POST'被引用。在這個塊周圍添加一個條件來檢查'if(count($ _ POST)> 0)' –