我想做的是:
所以我已经定义了:
* @ApiResource(itemOperations={
* "get",
* "activate_account"={
* "method"="get",
* "path"="/account/activate/{confirmationToken}",
* "controller"=UserActivate::class
* }
* })
*/
在我的User
实体类中,有UserActivate
控制器和由UserActivateHandler
控制器调用的UserActivate
。我已将ID的ApiProperty
identifier
设置为false
,并将confirmationToken
设置为true
。
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
* @ApiProperty(identifier=false)
*
*/
private $id;
/**
*
* @ORM\Column(type="string", nullable=true)
* @ApiProperty(identifier=true)
*/
protected $confirmationToken;
但是API平台仍然需要ID,并且似乎看不到confirmationToken
参数。
基本上我的问题是,在这种情况下,如何通过confirmationToken
来检索对象?
我也遇到了同样的问题,即通过不同于标识符所指示的属性来获得实体;您在属性注释方面做得很好:
@ApiProperty(identifier=false)
@ApiProperty(identifier=true)
但是同时您必须在路径中保留{id},所以请更改
"path"="/account/activate/{confirmationToken}",
to
"path"="/account/activate/{id}"