我正在尝试使用 fetch api 删除记录 laravel,但出现以下错误:此路由不支持 GET 方法。支持的方法:删除。
路线:
Route::delete('/persona_eliminar/{id}', 'PersonaController@eliminar');
来自我获取 id 的 foreach 的按钮:
<button class="btn btn-danger btn-sm"
onclick="deletePersona({{$persona->id}})">
<i class="fas fa-times">
</i>
</button>
JS:
function deletePersona(id) {
fetch("/persona_eliminar/" + id, {
method: "DELETE",
})
.then((res) => res.json())
.then((response) => {
console.log(response);
});
}
白衣非少年
胡说叔叔
智慧大石
相关分类