在 Symfony 中确定保存模型是否成功

发布于 2024-11-23 17:10:20 字数 87 浏览 1 评论 0原文

如何确定新模型是否已成功保存在 symfony 中?我检查了模型的返回值。例如 $ret = $model->save();但 $ret 返回 null。

How will I determine if a new model was successfully save in symfony? I checked the return value of a model. For example $ret = $model->save(); but $ret returns null.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

池木 2024-11-30 17:10:20

通常,如果出现问题,就会抛出异常(例如 PropelException)。文本消息将如下所示:PropelException:无法执行 UPDATE (ADD) 语句...

Usually, an exception (e.g. PropelException) will be thrown if something goes wrong. Text message will look like this: PropelException: Unable to execute UPDATE (ADD) statement...

岁月静好 2024-11-30 17:10:20

你可以在save()方法之后查询它,如果结果不为空save()就正常了

you can query it after the save() method, and if the result is not empty save() has gone fine

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