所以我正在學(xué)習(xí)創(chuàng)建 API 的基礎(chǔ)。我正在嘗試使用 API 來(lái)創(chuàng)建新用戶,但是我需要使用 symfony 來(lái)哈希密碼。我創(chuàng)建了一個(gè) PasswordEncoderSubscriber 方法,該方法在將密碼插入數(shù)據(jù)庫(kù)之前對(duì)密碼進(jìn)行哈希處理。private $encoder;public function __construct(PasswordEncoderInterface $encoder){ $this->encoder = $encoder;}public static function getSubscribedEvents(){ return [ KernelEvents::VIEW => ['encodePassword' => EventPriorities::PRE_WRITE] ];}public function encodePassword(ViewEvent $event){ $result = $event->getControllerResult(); $method = $event->getRequest()->getMethod(); if ($result instanceof User && $method === "POST") { $hash = $this->encoder->encodePassword($result, $result->getPassword()); $result->setPassword($hash); }}我使用來(lái)KernelEvents::View調(diào)用該函數(shù),encodePassword然后再使用EventPriorities::PRE_WRITE.這是我得到的錯(cuò)誤:注意:未定義的偏移量:0。KernelEvents::VIEW我忘記了什么嗎?之后代碼就中斷了?
1 回答

四季花海
TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超5個(gè)贊
根據(jù)symfony 手冊(cè),您應(yīng)該提供處理程序,并且它的優(yōu)先級(jí)為包含 2 個(gè)項(xiàng)目的數(shù)組:
return [
? ? KernelEvents::EXCEPTION => [
? ? ? ? ['processException', 10],
? ? ],
];
所以,你的代碼應(yīng)該是:
public static function getSubscribedEvents()
{
? ? return [
? ? ? ? KernelEvents::VIEW => [
? ? ? ? ? ? ['encodePassword', EventPriorities::PRE_WRITE],
? ? ? ? ]
? ? ];
}
- 1 回答
- 0 關(guān)注
- 102 瀏覽
添加回答
舉報(bào)
0/150
提交
取消