我使用的是for循環用於從API在表內顯示數據:刪除表中的行(從一個循環的API)捲曲
for ($i = 0; $i < count($return['data']); $i++){
echo "<tr><td>".$return['data'][$i]['data_id']."</td>";
echo "<td>".'<button id="delete" class="btn btn-danger" value="'.$return['data'][$i]['data_id'].'" type="text">Delete</button>'."</td></tr>";
}
結果是一個表,其中顯示了data_id
和連續刪除按鈕。現在,我希望能夠通過發送data_id
到curl-> delete
(api)代碼時點擊刪除按鈕來刪除該項目! 或者下面的代碼刪除按鈕點擊運行
curl --include \ --request DELETE \ --header "<secret key>" \ https://example.com/api/v1/data/{data_Iid}?app_id={appId}
,我需要包括來自循環了Data_ID,並把它傳遞給生硬刪除代碼。我使用了onClick
函數來獲取data_id
的值,但它僅顯示每個刪除按鈕的第一個data_id
值。
我該如何實現我的目標,並能夠通過正確的data_id
來控制刪除代碼? 謝謝,
好的,我做了,我也在ajax上運行一個錯誤,你能幫我嗎?這是我的ajax代碼在你的if:if(target.tagName ='BUTTON'&& target.value){$ .ajax({url:「delete.php」,data:$(this).target.value,type :'POST',dataType:「json」,success:function(data){('#resultback')。addClass(「alert alert-success」)。html('it was been succeededfully!'); }} );}' – callmejoejoe