[路线:verification.verify] 缺少必需的参数
Missing required parameter for [Route: verification.verify]
在我的一个项目中,我使用 Fortify 作为我的 BE。我需要一个多语言应用程序,因此我添加了
'prefix' => {locale}'
到 config/fortify.php.
登录、注册和 2FA 工作正常,但问题出现在电子邮件验证过程中。
如果我尝试单击通过电子邮件收到的 link,它会转到 /email/verify
和 returns 禁止页面错误。
然后,如果我要求再收到一封验证电子邮件,returns 问题标题上显示的错误。
可能和locale参数有关,因为当我运行 route::list时,verification.verify
路由显示的终点是{locale}/email/verify/{id}/{hash}
,所以我假设请求中的 link 是另一封邮件导致错误的原因,因为它被引用为 /email/verify/{id}/{hash}
.
所以有人知道怎么改吗?
或者有人遇到过关于 Fortify 和这些本地化路线的类似问题吗?
我要做的是自定义一些默认的 Fortify 函数,扩展一些 类 以便向它们添加语言环境参数。
当新用户注册(事件)时,它会发送验证电子邮件(侦听器),因此我必须配置此流程中涉及的文件。
<?php
namespace App\Listeners;
use Illuminate\Auth\Events\Registered;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
class SendEmailVerificationNotification implements ShouldQueue
{
use Queueable;
public function handle(Registered $event)
{
if ($event->user instanceof MustVerifyEmail && ! $event->user->hasVerifiedEmail()) {
$event->user->sendCustomVerificationEmailNotification();
}
}
}
并在用户模型上创建函数 sendCustomVerificationEmailNotification 以及将要发送的通知 CustomVerificationNotification。
public function sendCustomVerificationEmailNotification()
{
$this->notify(new CustomVerificationNotification);
}
<?php
namespace App\Notifications;
use Carbon\Carbon;
use Illuminate\Auth\Notifications\VerifyEmail;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\URL;
class CustomVerificationNotification extends VerifyEmail
{
protected function verificationUrl($notifiable)
{
if (static::$createUrlCallback) {
return call_user_func(static::$createUrlCallback, $notifiable);
}
return URL::temporarySignedRoute(
'verification.verify',
Carbon::now()->addMinutes(Config::get('auth.verification.expire', 60)),
[
'locale' => app()->getLocale(),
'id' => $notifiable->getKey(),
'hash' => sha1($notifiable->getEmailForVerification()),
]
);
}
}
万一用户想要额外的验证电子邮件通知,这是通过 EmailVerificationNotificationController 上的函数处理的
<?php
namespace App\Http\Controllers;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Laravel\Fortify\Fortify;
use Laravel\Fortify\Http\Controllers\EmailVerificationNotificationController;
class CustomEmailVerificationController extends EmailVerificationNotificationController
{
/**
* Send a new email verification notification.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
if ($request->user()->hasVerifiedEmail()) {
return $request->wantsJson()
? new JsonResponse('', 204)
: redirect()->intended(Fortify::redirects('email-verification'));
}
$request->user()->sendEmail();
return $request->wantsJson()
? new JsonResponse('', 202)
: back()->with('status', 'verification-link-sent');
}
}
在我的一个项目中,我使用 Fortify 作为我的 BE。我需要一个多语言应用程序,因此我添加了
'prefix' => {locale}'
到 config/fortify.php.
登录、注册和 2FA 工作正常,但问题出现在电子邮件验证过程中。
如果我尝试单击通过电子邮件收到的 link,它会转到 /email/verify
和 returns 禁止页面错误。
然后,如果我要求再收到一封验证电子邮件,returns 问题标题上显示的错误。
可能和locale参数有关,因为当我运行 route::list时,verification.verify
路由显示的终点是{locale}/email/verify/{id}/{hash}
,所以我假设请求中的 link 是另一封邮件导致错误的原因,因为它被引用为 /email/verify/{id}/{hash}
.
所以有人知道怎么改吗? 或者有人遇到过关于 Fortify 和这些本地化路线的类似问题吗?
我要做的是自定义一些默认的 Fortify 函数,扩展一些 类 以便向它们添加语言环境参数。
当新用户注册(事件)时,它会发送验证电子邮件(侦听器),因此我必须配置此流程中涉及的文件。
<?php
namespace App\Listeners;
use Illuminate\Auth\Events\Registered;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
class SendEmailVerificationNotification implements ShouldQueue
{
use Queueable;
public function handle(Registered $event)
{
if ($event->user instanceof MustVerifyEmail && ! $event->user->hasVerifiedEmail()) {
$event->user->sendCustomVerificationEmailNotification();
}
}
}
并在用户模型上创建函数 sendCustomVerificationEmailNotification 以及将要发送的通知 CustomVerificationNotification。
public function sendCustomVerificationEmailNotification()
{
$this->notify(new CustomVerificationNotification);
}
<?php
namespace App\Notifications;
use Carbon\Carbon;
use Illuminate\Auth\Notifications\VerifyEmail;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\URL;
class CustomVerificationNotification extends VerifyEmail
{
protected function verificationUrl($notifiable)
{
if (static::$createUrlCallback) {
return call_user_func(static::$createUrlCallback, $notifiable);
}
return URL::temporarySignedRoute(
'verification.verify',
Carbon::now()->addMinutes(Config::get('auth.verification.expire', 60)),
[
'locale' => app()->getLocale(),
'id' => $notifiable->getKey(),
'hash' => sha1($notifiable->getEmailForVerification()),
]
);
}
}
万一用户想要额外的验证电子邮件通知,这是通过 EmailVerificationNotificationController 上的函数处理的
<?php
namespace App\Http\Controllers;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Laravel\Fortify\Fortify;
use Laravel\Fortify\Http\Controllers\EmailVerificationNotificationController;
class CustomEmailVerificationController extends EmailVerificationNotificationController
{
/**
* Send a new email verification notification.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
if ($request->user()->hasVerifiedEmail()) {
return $request->wantsJson()
? new JsonResponse('', 204)
: redirect()->intended(Fortify::redirects('email-verification'));
}
$request->user()->sendEmail();
return $request->wantsJson()
? new JsonResponse('', 202)
: back()->with('status', 'verification-link-sent');
}
}