Here’s an example:
$('body').on('click', '#btnSavePendingPaymentInfo', function () {
var SelectorID = $(this).attr('id');
console.log(`Saving payment info`);
csrftoken = document.querySelector('[name=csrfmiddlewaretoken]').value;
console.log(`csrftoken: ${csrftoken}`);
url = $("#UpdatePaymentModal").data('update-link');
const request = new Request(
url,
{ headers: { 'X-CSRFToken': csrftoken } }
);
var checkin_num = $('body').find("#CheckinNo").html();
var HospitalID = $('body').find("#PatientIP").html();
var amt_paid = $("#pending_amt_paid").val();
// Build formData object.
let formData = new FormData();
formData.append('checkin_num', checkin_num);
formData.append('HospitalID', HospitalID);
formData.append('amt_paid', amt_paid);
fetch(request, {
method: 'POST',
mode: 'same-origin', // Do not send CSRF token to another domain.
body: formData,
}).then(function (response) {
console.log(`Received server response.`);
console.log(response);
// text = response.statusText;
response.text().then(
text => $("#" + SelectorID).notify(text, { position: "right middle", className: 'success' })
);
});
});
Joel G Mathew, known in tech circles by the pseudonym Droidzone, is an opensource and programming enthusiast.
He is a full stack developer, whose favorite languages are currently Python and Vue.js. He is also fluent in Javascript, Flutter/Dart, Perl, PHP, SQL, C and bash shell scripting. He loves Linux, and can often be found tinkering with linux kernel code, and source code for GNU applications. He used to be an active developer on XDA forums, and his tinkered ROMS used to be very popular in the early 2000s.
His favorite pastime is grappling with GNU compilers, discovering newer Linux secrets, writing scripts, hacking roms, and programs (nothing illegal), reading, blogging. and testing out the latest gadgets.
When away from the tech world, Dr Joel G. Mathew is a practising ENT Surgeon, busy with surgeries and clinical practise.