1

Doctrine2のODとYAML形式を使用して地理空間インデックス用の埋め込みドキュメントをマッピングしようとすると問題が発生します。MongoDB:「場所」ドキュメントに「調整」ドキュメントを埋め込んで、地理空間インデックスクエリを実行できるようにしますが、マッピングの問題が発生しました。

公式ドキュメントに見られるように:http: //docs.doctrine-project.org/projects/doctrine-mongodb-odm/en/latest/reference/indexes.html#geospatial-indexing

しかし、私はYAMLマッピング形式で作業しています...そしてこの問題が発生しました:

「クラス'IntraMuros\ CoreBundle \ Document\Coordinates'のフィールド'/Applications/MAMP/htdocs/intramuros-web/src/IntraMuros/CoreBundle/Resources/config/doctrine/Coordinates.mongodb.yml'のマッピングが見つかりません。」

これが私のYAMLファイルです:Place.mongodb.yml、Symfony2のバンドルのResources\configディレクトリに正しく配置されています。

IntraMuros\CoreBundle\Document\Place:
  type: document
  db: intramuros
  collection: places
  repositoryClass: IntraMuros\CoreBundle\Repository\PlaceRepository
  fields:
    id:
      type: id
      id:  true
    name:
      type: string
    address:
      type: string
    coordinates:
      embedded: true
      type: one
      targetDocument: IntraMuros\CoreBundle\Document\Coordinates
      cascade: all
      strategy: set
    indexes:
      coordinates:
        keys:
          coordinates: 2d

IntraMuros\CoreBundle\Document\Coordinates:
  type: EmbeddedDocument
  db: intramuros
  fields:
    latitude:
      type: float
    longitude:
      type: float

これが私が使用するPHPドキュメントクラスです。

<?php

namespace IntraMuros\CoreBundle\Document;


/**
 * @Document(requireIndexes=true)
 * @Indexes({
 *     @Index(keys={"coordinates"="2d"})
 * })
 */
class Place
{
    /**
     * @Id
     */
    protected $id;

    /**
     * @String
     */
    protected $name;

    /**
     * @String 
     */
    protected $address;

    /**
     * @EmbedOne(targetDocument="IntraMuros\CoreBundle\Document\Coordinates")
     */
    protected $coordinates;

    public function __construct($latitude = NULL, $longitude = NULL)
    {
        $coordinates = new Coordinates($latitude, $longitude);
        $this->setCoordinates($coordinates);
    }

    public function getId()
    {
        return $this->id;
    }

    public function setName($name)
    {
        $this->name = $name;
    }

    public function getName()
    {
        return $this->name;
    }

    public function setAddress($address)
    {
        $this->address = $address;
    }

    public function getAddress()
    {
        return $this->address;
    }

    public function setCoordinates($coordinates)
    {
        $this->coordinates = $coordinates;
    }

    public function getCoordinates($toArray = false)
    {
        if ($toArray) {
            if ($this->coordinates) {
                return $this->coordinates->toArray();
            }
        }
        return $this->coordinates;
    }

    public function toArray()
    {
        return array(
            'id' => $this->getId(),
            'name' => $this->getName(),
            'address' => $this->getAddress(),
            'coordinates' => $this->getCoordinates(true)
        );
    }
}


/**
 * @EmbeddedDocument
 */
class Coordinates
{
    /**
     * @Float
     */
    protected $latitude;

    /**
     * @Float
     */
    protected $longitude;

    public function __construct($latitude = NULL, $longitude = NULL)
    {
        $this->latitude = $latitude;
        $this->longitude = $longitude;
    }

    public function setLatitude($latitude)
    {
        $this->latitude = $latitude;
    }

    public function getLatitude()
    {
        return $this->latitude;
    }

    public function setLongitude($longitude)
    {
        $this->longitude = $longitude;
    }

    public function getLongitude()
    {
        return $this->longitude;
    }

    public function toArray()
    {
        return array(
            'latitude' => $this->getLatitude(),
            'longitude' => $this->getLongitude()
        );
    }
}

よろしくお願いします、ボビー。

4

1 に答える 1

-1

ドキュメントのマッピングには、YMLの代わりに注釈を使用する必要があります。

それは非常に簡単に動作します。

幸運を !;)

于 2012-06-16T22:44:34.067 に答える