使用jquery post连接到我的sql数据库时如何返回错误消息

发布于 2024-11-09 13:03:27 字数 432 浏览 0 评论 0原文

我试图使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

影子的影子 2024-11-16 13:03:27

试试这个:

$connect = mysql_connect("localhost","username","password") or die(json_encode(array('error' => true, 'message' => mysql_error())));

这会将错误编码为 json 字符串

Try this:

$connect = mysql_connect("localhost","username","password") or die(json_encode(array('error' => true, 'message' => mysql_error())));

This will encode the error to a json string

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文