我在提交文件中有问题。提交编码正在我的wampserver上运行。 但是当我把它加载到服务器。 Post方法不起作用。以下是代码。
var datastring = $("#aprovel_form").serialize();
$.ajax({
type: "POST",
url: "db/suppler_add_to_job_db.php",
data: datastring,
dataType: "json",
success: function(data) {
//var obj = jQuery.parseJSON(data); if the dataType is not specified as json uncomment this
// do what ever you want with the server response
alert(data);
window.location.replace("http://www.tesiy.com/abcmail/rasasaree_system_part_2/pages/?page=supplier/add_suppler_from_begin");
},
error: function(){
alert('error handing here');
}
})
我收到警报('错误处理')。请帮帮我。
答案 0 :(得分:0)
抱歉,伙计们。最后我发现了问题。 suppler_add_to_job_db.php文件未完成上传。它被损坏了。这就是post方法工作的原因。无论如何,谢谢你帮助朋友。