1 <script> 2 function del_product_information(id) { 3 $.ajax({ 4 url: "{% url `del_product_information` %}", //請求的URL 5 type: "GET", //請求的方式 6 dataType: `json`, // 前後端互動的資料格式 7 data: {`product_id`: id}, //向後端傳送的資料 8 async: false, //是否非同步 9 success: function (msg) { //請求成功後執行的操作 10 alert(msg); 11 window.location.reload() //重新整理頁面 12 } 13 }) 14 } 15 </script>
如果是提交表單時,可以通過$(`#update_form`).serialize(),直接打包提交。