Web Development/Jquery (2) 썸네일형 리스트형 [Django/JS] Jquery Ajax를 JS Fetch 함수로 변환하는 방법 fetch_option = { method: "POST", headers: { "Content-Type" : "application/json", }, body : JSON.stringify(data), }; fetch("url/", fetch_option).then(response => {return response.json()}) .then(response => { // function to execute }) .catch(function(err){ alert(err) }) .finally(function(){ }) error -> catch complete -> finally // views.py def AnyFunction(request): data = json.load(request) return.. [Jquery] datepicker 날짜 제한하기 현재 날짜를 기준으로 90일 이전까지로 날짜 제한하기 min_date = new Date(new Date().setDate(new Date().getDate()-90)) $("input[type=date]").attr("min", min_date.toISOString().substring(0, 10)) $("input[type=date]").attr("max", new Date().toISOString().substring(0, 10)) 이전 1 다음