gpt4 book ai didi

doctrine-odm - 当代理找不到引用的文档时如何抑制 MongoDDException

转载 作者:行者123 更新时间:2023-12-04 02:07:56 25 4
gpt4 key购买 nike

我们正在使用 Symfony2/DoctrineOdm/MongoDB,当我们这样做时:
if ($doc.referenceOne != null) { ... }
$doc.referenceOne包含 MongoDbRef 指向已删除/丢失的文档,Doctrine Proxy 对象会引发 MongoDBException。

可以告诉代理返回 null 而不是引发异常吗?

详细说明:

我们的文件:

class User {
/* @MongoDB\ReferenceOne( ... ) */
private $photo;
}

如果 $photo 包含 MongoDbRef ,但文件丢失/删除,

当我们这样做时 if ($user.photo) { ... }学说将引发 MongoDBException:
The "Proxies\DocumentPhotoProxy" document with identifier "4fd8b3ef732bafab7b000000" could not be found

我们想抑制异常,因为我们的应用程序可以处理该变量中的空值。

(我们可以简单地记录该错误,而异常传播到 500 页并中断我们的服务)

最佳答案

编辑 2:学说扩展引用完整性也可以提供帮助。它会自动取消无效的引用。您可以在他们的 GitHub 存储库中找到更多信息:https://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/reference_integrity.md对于 Symfony2 集成:https://github.com/stof/StofDoctrineExtensionsBundle

编辑:我不明白你指的是 Twig 模板还是 php。您将在下面找到 twig 的解决方案,但如果您的问题是关于 php 添加 try...catch阻止您的 setter/getter 可能会帮助您解决问题。

我不知道您是否已经找到了解决方案,但如果其他人需要这个,我已经使用了一个(肮脏的)解决方法:

覆盖 Twig_Template通过在主配置文件中定义自定义的类( config.yml )

例子:

# app/config/config.yml
base_template_class: Acme\DemoBundle\Template

并覆盖 getAttribute带有 try...catch 的方法堵塞:
<?php

namespace Acme\DemoBundle;

use Doctrine\ODM\MongoDB\DocumentNotFoundException;

abstract class Template extends \Twig_Template
{
protected function getAttribute($object, $item, array $arguments = array(), $type = \Twig_TemplateInterface::ANY_CALL, $isDefinedTest = false, $ignoreStrictCheck = false)
{
try {
$ret = parent::getAttribute($object, $item, $arguments, $type, $isDefinedTest, $ignoreStrictCheck);
} catch (DocumentNotFoundException $e) {
$ret = null;
}
return $ret;
}
}

这将忽略所有 DocumentNotFoundExceptions。

不过要小心 ,无效的引用仍然存在于您的数据库中。这只会忽略 Twig 模板中抛出的异常。

关于doctrine-odm - 当代理找不到引用的文档时如何抑制 MongoDDException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11029286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com