在 Symfony 中确定保存模型是否成功
如何确定新模型是否已成功保存在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,如果出现问题,就会抛出异常(例如 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...
你可以在save()方法之后查询它,如果结果不为空save()就正常了
you can query it after the save() method, and if the result is not empty save() has gone fine