运行此命令时,我的 Doctrine ODM 文档中有一个嵌入文档
php app/console fos:elastica:populate
我得到这个错误:
ng\myBundle\Document\Coordinates 类的对象无法在第 139 行的 /usr/share/nginx/www/project/vendor/friendsofsymfony/elastica-bundle/FOS/ElasticaBundle/Transformer/ModelToElasticaAutoTransformer.php 中转换为字符串
似乎是什么问题,官员?
从 137 到 141 的代码:
if ($v instanceof \DateTime) {
$v = $v->format('c');
} elseif (!is_scalar($v) && !is_null($v)) {
$v = (string)$v;
}
我的映射:
mappings:
title: { boost: 5 }
coordinates: {type:geo_point,lat_lon:true, boost: 5 }