我有一个这样的ajax调用——
$.ajax({
url: 'destination.php',
type: "put",
data: $('#myform').serialize(),
success: function (response) {
//some tasks
}
}
在我的destination.php 文件中,我如何处理作为放置请求的表单值并将这些值用于其他任务,例如将它们保存到数据库或文件中?我不是 PHP/JQuery/Ajax 方面的专家。谢谢。