v0.0.7 Try to get ajax to work with backend
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
$("#submit").click(function(){
|
||||
var $title = $("#title");
|
||||
var $description = $("#description");
|
||||
|
||||
|
||||
var data = {
|
||||
title: $title.val(),
|
||||
description: $description.val(),
|
||||
};
|
||||
|
||||
console.log(data);
|
||||
|
||||
$.ajax({
|
||||
url: '../Backend/controller/upload.php',
|
||||
type: 'POST',
|
||||
data: data,
|
||||
contentType: 'application/json; charset=utf-8',
|
||||
success: function () {
|
||||
console.log("Dansker bingo")
|
||||
},
|
||||
error: function () {
|
||||
console.log("error");
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
@@ -4,10 +4,10 @@ function deletePost(id) {
|
||||
url: '../Backend/controller/deletePost.php',
|
||||
data: {'delete_id':id},
|
||||
success:function (data) {
|
||||
console.log(data);
|
||||
console.log("Delete was a success");
|
||||
},
|
||||
error:function (data) {
|
||||
console.log(data);
|
||||
console.log("Delete was not a success");
|
||||
}
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user