我正在尝试使用文档的哈希类型。当我创建一个对象时没有问题,但是当我尝试检索文档时,我得到一个“数组到字符串转换”。
我简化了文件。仅当我添加此哈希属性时才开始发生此数组到字符串转换。
看看symfony的转储消息,它似乎来自保湿器。
为什么Doctrine试图将数据转换为字符串的任何想法?
class MyDocument
{
/**
* @MongoDB\Id
*/
protected $id;
/**
* @MongoDB\Field(type="hash")
*/
protected $value = array();
}
我的一项服务中的某处:
$product =
$this->container->get('doctrine_mongodb')
->getRepository('XTradBundle:Traduction')
->findAll();
堆栈追踪:
in var\cache\dev\doctrine\odm\mongodb\Hydrators\WeBSurgTradBundleDocumentTraductionHydrator.php at line 84 -
if (isset($data['value']) || (! empty($this->class->fieldMappings['value']['nullable']) && array_key_exists('value', $data))) {
$value = $data['value'];
if ($value !== null) {
//Why is it converting it to a string here?
$return = (string) $value;
} else {
$return = null;
}
答案 0 :(得分:0)
似乎$value
中的protected $value = array();
是保留名称。简单地将其命名为其他东西可以解决问题。