techwithtim / Flask-Web-App-Tutorial

Code for the note storing flask web app made during a YouTube video.
938 stars 1.03k forks source link

nothing is being deleted. I think smth to do w buttons. The delete button can't be triggered #156

Open KhantMhueZawWin opened 6 months ago

KhantMhueZawWin commented 6 months ago

function deleteNote(noteId) { console.log('deleteNote function called with noteId:', noteId); fetch("/delete-note", { method: "POST", body: JSON.stringify({ noteId: noteId }), }).then((_res) => { window.location.href = "/"; }); }

i tried adding console.log in js nothing happens