api-平台 odm iri 引用不会被转换为 json 中的对象
api-platform odm iri reference won't be converted into objects in json
我想创建一个这样的模型。
{
"id": 7653,
"name": "Vortl 123",
"category": [
{
"name": "Electronic",
"url": "electronic",
"id": 1
}, {
"name": "Phone",
"url": "phone",
"id": 2
},
{
"name": "Mobile Phone",
"url": "mobile-phone",
"id": 3
}
}
我使用 doctrine odm 参考创建了文档。代码是这些。
这是产品 class。
/**
* @ApiResource
*
* @Document
*/
class Product
{
/**
* @ODM\Id(strategy="INCREMENT", type="integer")
*/
private $id;
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
*/
public $name;
public function __construct()
{
$this->categories = new ArrayCollection();
}
/**
* @ODM\ReferenceMany(targetDocument=Category::class, inversedBy="product", cascade={"persist"}, storeAs="id")
*/
public $categories;
/**
* @return mixed
*/
public function getId(): ?int
{
return $this->id;
}
/**
* @param Category $category
*/
public function addCategory(Category $category): void
{
$this->categories->add($category);
}
public function removeCategory(Category $category): void
{
$category->product = null;
$this->categories->removeElement($category);
}
我的类别 class 是。
/**
* @ApiResource
*
* @ODM\Document
*/
class Category
{
/**
* @ODM\Id(strategy="INCREMENT", type="integer")
*/
private $id;
/**
* @ODM\ReferenceOne(targetDocument=Product::class, mappedBy="categories", storeAs="id")
*/
public $product;
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
*/
private $name;
/**
* @ODM\Field(type="string")
*/
private $url;
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @param mixed $id
*/
public function setId($id): void
{
$this->id = $id;
}
/**
* @return mixed
*/
public function getName()
{
return $this->name;
}
/**
* @param mixed $name
*/
public function setName($name): void
{
$this->name = $name;
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* @param mixed $url
*/
public function setUrl($url): void
{
$this->url = $url;
}
}
它工作正常。当我可以 post 类别并获得它们时。然后我 post 产品并通过 iri 参考向产品添加类别。问题是我看到的是类别 ID,而不是像这样的类别对象。
{
"@context": "/api/contexts/Product",
"@id": "/api/products/17",
"@type": "Product",
"name": "Product17",
"categories": [
"/api/categories/1",
"/api/categories/2",
"/api/categories/3"
]
}
我使用 post 方法创建类别,然后使用 post 方法创建产品。为了向产品添加类别,我在产品的 post 方法中使用了像 /api/categories/1 这样的 iri 引用。
我不明白为什么它显示有 iri 参考?我想要我想要的示例中那些 iri 引用的对象。谁能帮我?
您必须至少添加一组 normalizationContext
:
<?php
/**
* @ApiResource(
* normalizationContext={"groups" = {"product:read"}}
* )
*
* @Document
*/
class Product
{
/**
* @ODM\Id(strategy="INCREMENT", type="integer")
*/
private $id;
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
* @Groups({"product:read"})
*/
public $name;
// ...
}
和Category
:
<?php
/**
* @ApiResource
*
* @Document
*/
class Category
{
// ...
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
* @Groups({"product:read"})
*/
public $name;
// ...
}
之后你应该看到 Category
的对象 属性 $name
我想创建一个这样的模型。
{
"id": 7653,
"name": "Vortl 123",
"category": [
{
"name": "Electronic",
"url": "electronic",
"id": 1
}, {
"name": "Phone",
"url": "phone",
"id": 2
},
{
"name": "Mobile Phone",
"url": "mobile-phone",
"id": 3
}
}
我使用 doctrine odm 参考创建了文档。代码是这些。
这是产品 class。
/**
* @ApiResource
*
* @Document
*/
class Product
{
/**
* @ODM\Id(strategy="INCREMENT", type="integer")
*/
private $id;
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
*/
public $name;
public function __construct()
{
$this->categories = new ArrayCollection();
}
/**
* @ODM\ReferenceMany(targetDocument=Category::class, inversedBy="product", cascade={"persist"}, storeAs="id")
*/
public $categories;
/**
* @return mixed
*/
public function getId(): ?int
{
return $this->id;
}
/**
* @param Category $category
*/
public function addCategory(Category $category): void
{
$this->categories->add($category);
}
public function removeCategory(Category $category): void
{
$category->product = null;
$this->categories->removeElement($category);
}
我的类别 class 是。
/**
* @ApiResource
*
* @ODM\Document
*/
class Category
{
/**
* @ODM\Id(strategy="INCREMENT", type="integer")
*/
private $id;
/**
* @ODM\ReferenceOne(targetDocument=Product::class, mappedBy="categories", storeAs="id")
*/
public $product;
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
*/
private $name;
/**
* @ODM\Field(type="string")
*/
private $url;
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @param mixed $id
*/
public function setId($id): void
{
$this->id = $id;
}
/**
* @return mixed
*/
public function getName()
{
return $this->name;
}
/**
* @param mixed $name
*/
public function setName($name): void
{
$this->name = $name;
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* @param mixed $url
*/
public function setUrl($url): void
{
$this->url = $url;
}
}
它工作正常。当我可以 post 类别并获得它们时。然后我 post 产品并通过 iri 参考向产品添加类别。问题是我看到的是类别 ID,而不是像这样的类别对象。
{
"@context": "/api/contexts/Product",
"@id": "/api/products/17",
"@type": "Product",
"name": "Product17",
"categories": [
"/api/categories/1",
"/api/categories/2",
"/api/categories/3"
]
}
我使用 post 方法创建类别,然后使用 post 方法创建产品。为了向产品添加类别,我在产品的 post 方法中使用了像 /api/categories/1 这样的 iri 引用。
我不明白为什么它显示有 iri 参考?我想要我想要的示例中那些 iri 引用的对象。谁能帮我?
您必须至少添加一组 normalizationContext
:
<?php
/**
* @ApiResource(
* normalizationContext={"groups" = {"product:read"}}
* )
*
* @Document
*/
class Product
{
/**
* @ODM\Id(strategy="INCREMENT", type="integer")
*/
private $id;
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
* @Groups({"product:read"})
*/
public $name;
// ...
}
和Category
:
<?php
/**
* @ApiResource
*
* @Document
*/
class Category
{
// ...
/**
* @ODM\Field(type="string")
* @Assert\NotBlank
* @Groups({"product:read"})
*/
public $name;
// ...
}
之后你应该看到 Category
的对象 属性 $name