使用jquery post连接到我的sql数据库时如何返回错误消息
我试图使用 jquery post 函数返回错误来检索错误。
到目前为止,我已经用 php
$connect = mysql_connect("localhost","username","password") 或 die("连接到数据库时出错。");
编写,但我想重新启动像这样留言
$connect = mysql_connect("localhost","username","password");
if(!$connect){
$data['error'] = true;
$data['message'] = "Error connecting to the database.";
echo json_encode($data);
};
帮助!!
I am trying to return an error using jquery post function to retrieve the error.
So far I have written in php
$connect = mysql_connect("localhost","username","password") or die("Error connecting to the database.");
but i want to retunrn the message like so
$connect = mysql_connect("localhost","username","password");
if(!$connect){
$data['error'] = true;
$data['message'] = "Error connecting to the database.";
echo json_encode($data);
};
Help!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
这会将错误编码为 json 字符串
Try this:
This will encode the error to a json string