我使用symfony2 API平台从我的mongodb数据库生成api,但是我收到此错误: hydra:说明:"没有为类型对象找到资源" AppBundle \ Document \ article"",
我有两个mongo db文档用户和文章,每个用户都有多篇文章,所以我试图列出所有用户的文章,所以我可以得到这样的东西:
{
@id: "/user/53edb6200cf2400d584c2617",
@type: "user",
class: "de.freelancer.mongo.domain.User",
email: "feer@de.com",
displayname: "feer",
withnewsletter: false,
language: "de_DE",
active: true,
admin: false,
articles : ['article1','article2','article3']
}
这是我的代码:
用户文档
<?php
namespace AppBundle\Document;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
use Dunglas\ApiBundle\Annotation\Iri;
use Symfony\Component\Validator\Constraints as Assert;
/**
@MongoDB\Document
@MongoDB\Document(collection="user")
/
class User{
/*
@MongoDB\Id(strategy="AUTO") */
private $id;
/**
@MongoDB\ReferenceMany(targetDocument="articles", mappedBy="user") */
private $articles;
public function __construct()
{
$this->articles = new ArrayCollection();
}
/**
*/
public function getArticles()
{
return $this->articles;
}
}
文章文档
<?php
namespace AppBundle\Document;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
use Dunglas\ApiBundle\Annotation\Iri;
use Symfony\Component\Validator\Constraints as Assert;
/**
@MongoDB\Document
@MongoDB\Document(collection="article")
/
class article
{
/*
@MongoDB\Id(strategy="AUTO") */
private $id;
/**
@MongoDB\ReferenceOne(targetDocument="user", inversedBy="articles") */
private $user;
/**
*/
public function setUser(userProfile $user)
{
$this->user = $user;
return $this;
}
/**
*/
public function getUser() {
return $this->user;
}
}
任何人都可以帮助我获取用户文章列表
感谢
答案 0 :(得分:0)
API平台管理的每个类都需要使用context.Database.SqlQuery<Class>(sql)
注释(或YAML或XML中的等效注释)进行标记。
并且还没有本地MongoDB支持(但这是a work in progress)。
您仍然可以使用自定义data provider自行添加MongoDB支持,但如果您是API平台的新手,则应尝试使用Doctrine ORM并首先遵循官方教程:https://api-platform.com/docs/distribution/