11
JQuery Ajax, POST yerine GET gönderiyor
Aşağıdaki kod, POST HTTP isteği yerine bir GET'i tetikler. function AddToDatabase() { this.url = './api/add'; } AddToDatabase.prototype.postData = function(dataToPost) { $.ajax({ type: "POST", url: this.url, data: dataToPost, context: this, success: this.onSuccess }); }; var AddToDatabase = new AddToDatabase(); data = {data: 'coucou'}; AddToDatabase.postData(data); Neden ve nasıl bir POST alabilirim? Google …