当前视点!ajax调用php失败怎么办

时间:2022-11-01 10:05:42       来源:PHP中文网


(相关资料图)

本教程操作环境:windows7系统、PHP8.1版、Dell G3电脑。

ajax调用php失败怎么办?

ajax请求php报500错误,ajax只能发起GET请求,而不能发POST请求,否则报500错误

我是大标题1

abc$.ajax({type: "GET", // GET方式不会报错url: "tmpl.html",datdType: "html",data: {"username": "username","password": "password"},success: function(data) {$("p").append(data);}});
登录后复制

我是大标题1

abc$.ajax({type: "GET", // 虽然是GET方式,但是data数据是JSON数据的序列化,也会报错url: "tmpl.html",datdType: "html",data: "{%22username%22:%22username%22,%22password%22:%22password%22}",success: function(data) {$("p").append(data);}});
登录后复制

我是大标题1

abc$.ajax({type: "POST", // POST方式一定会报错url: "tmpl.html",datdType: "html",data: {"username": "username","password": "password"},success: function(data) {$("p").append(data);}});
登录后复制

(1)所报错误都是一样的:Failed to load resource: the server responded with a status of 500 (Internal Server Error)

(2)我是前端工程师,只做前台,不写后台代码的,也就是没有J2EE或者PHP什么的。

(3)经过测试,如果有后台代码,所有情况都不会报错的。

推荐学习:《PHP视频教程》

以上就是ajax调用php失败怎么办的详细内容,更多请关注php中文网其它相关文章!

关键词: 相关文章 都是一样的 视频教程