简介

Laravel 提供了几个辅助函数来为应用程序生成 URL。主要用于在模板和 API 响应中构建 URL 或者在应用程序的其它部分生成重定向响应。

基础

生成基础 URLs

辅助函数 php url 可以用于应用的任何一个 URL。生成的 URL 将自动使用当前请求中的方案 (HTTP 或 HTTPS) 和主机:

  1. $post = App\Models\Post::find(1);
  2. echo url("/posts/{$post->id}");
  3. // http://example.com/posts/1

访问当前 URL

如果没有给辅助函数 php url 提供路径,则会返回一个 php Illuminate\Routing\UrlGenerator 实例,来允许你访问有关当前 URL 的信息:

  1. // 获取当前 URL 没有 query string...
  2. echo url()->current();
  3. // 获取当前 URL 包括 query string...
  4. echo url()->full();
  5. // 获取上个请求 URL
  6. echo url()->previous();

上面的这些方法都可以通过 php URL facade 访问:

  1. use Illuminate\Support\Facades\URL;
  2. echo URL::current();

命名路由的 URLs

辅助函数 php route 可以用于生成指定 命名路由 的URLs。 命名路由生成的 URLs 不与路由上定义的 URL 相耦合。因此,就算路由的 URL 有任何改变,都不需要对 php route 函数调用进行任何更改。例如,假设你的应用程序包含以下路由:

  1. Route::get('/post/{post}', function (Post $post) {
  2. // ...
  3. })->name('post.show');

要生成此路由的 URL ,可以像这样使用辅助函数 php route

  1. echo route('post.show', ['post' => 1]);
  2. // http://example.com/post/1

当然,辅助函数 php route 也可以用于为具有多个参数的路由生成 URL:

  1. Route::get('/post/{post}/comment/{comment}', function (Post $post, Comment $comment) {
  2. // ...
  3. })->name('comment.show');
  4. echo route('comment.show', ['post' => 1, 'comment' => 3]);
  5. // http://example.com/post/1/comment/3

任何与路由定义参数对应不上的附加数组元素都将添加到 URL 的查询字符串中:

  1. echo route('post.show', ['post' => 1, 'search' => 'rocket']);
  2. // http://example.com/post/1?search=rocket

Eloquent Models
你通常使用 Eloquent 模型 的主键生成 URL。因此,您可以将 Eloquent 模型作为参数值传递。 php route 辅助函数将自动提取模型的主键:

  1. echo route('post.show', ['post' => $post]);

签名 URLs

Laravel 允许你轻松地为命名路径创建「签名」 URLs,这些 URLs 在查询字符串后附加了「签名」哈希,允许 Laravel 验证 URL 自创建以来未被修改过。 签名 URLs 对于可公开访问但需要一层防止 URL 操作的路由特别有用。

例如,你可以使用签名 URLs 来实现通过电子邮件发送给客户的公共「取消订阅」链接。要创建指向路径的签名 URL ,请使用 php URL facade 的 php signedRoute 方法:

  1. use Illuminate\Support\Facades\URL;
  2. return URL::signedRoute('unsubscribe', ['user' => 1]);

如果要生成具有有效期的临时签名路由 URL,可以使用以下 php temporarySignedRoute 方法,当 Laravel 验证一个临时的签名路由 URL 时,它会确保编码到签名 URL 中的过期时间戳没有过期:

  1. use Illuminate\Support\Facades\URL;
  2. return URL::temporarySignedRoute(
  3. 'unsubscribe', now()->addMinutes(30), ['user' => 1]
  4. );

验证签名路由请求
要验证传入请求是否具有有效签名,你应该对传入的 php Illuminate\Http\Request 实例中调用 php hasValidSignature 方法:

  1. use Illuminate\Http\Request;
  2. Route::get('/unsubscribe/{user}', function (Request $request) {
  3. if (! $request->hasValidSignature()) {
  4. abort(401);
  5. }
  6. // ...
  7. })->name('unsubscribe');

有时,你可能需要允许你的应用程序前端将数据附加到签名 URL,例如在执行客户端分页时。因此,你可以指定在使用 php hasValidSignatureWhileIgnoring 方法验证签名 URL 时应忽略的请求查询参数。请记住,忽略参数将允许任何人根据请求修改这些参数:

  1. if (! $request->hasValidSignatureWhileIgnoring(['page', 'order'])) {
  2. abort(401);
  3. }

或者,你可以将 php Illuminate\Routing\Middleware\ValidateSignature 中间件 分配给路由。如果它不存在,则应该在 HTTP 内核的 php $middlewareAliases 数组中为此中间件分配一个键:

  1. /**
  2. * The application's middleware aliases.
  3. *
  4. * Aliases may be used to conveniently assign middleware to routes and groups.
  5. *
  6. * @var array<string, class-string|string>
  7. */
  8. protected $middlewareAliases = [
  9. 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
  10. ];

一旦在内核中注册了中间件,就可以将其附加到路由。如果传入的请求没有有效的签名,中间件将自动返回 php 403 HTTP 响应:

  1. Route::post('/unsubscribe/{user}', function (Request $request) {
  2. // ...
  3. })->name('unsubscribe')->middleware('signed');

响应无效的签名路由
当有人访问已过期的签名 URL 时,他们将收到一个通用的错误页面,显示 php 403 HTTP 状态代码。然而,你可以通过在异常处理程序中为 php InvalidSignatureException 异常定义自定义 “可渲染” 闭包来自定义此行为。这个闭包应该返回一个 HTTP 响应:

  1. use Illuminate\Routing\Exceptions\InvalidSignatureException;
  2. /**
  3. * 为应用程序注册异常处理回调
  4. */
  5. public function register(): void
  6. {
  7. $this->renderable(function (InvalidSignatureException $e) {
  8. return response()->view('error.link-expired', [], 403);
  9. });
  10. }

控制器行为的 URL

php action 功能可以为给定的控制器行为生成 URL。

  1. use App\Http\Controllers\HomeController;
  2. $url = action([HomeController::class, 'index']);

如果控制器方法接收路由参数,你可以通过第二个参数传递:

  1. $url = action([UserController::class, 'profile'], ['id' => 1]);

默认值

对于某些应用程序,你可能希望为某些 URL 参数的请求范围指定默认值。例如,假设有些路由定义了 php {locale} 参数:

  1. Route::get('/{locale}/posts', function () {
  2. // ...
  3. })->name('post.index');

每次都通过 php locale 来调用辅助函数 php route 也是一件很麻烦的事情。因此,使用 php URL::defaults 方法定义这个参数的默认值,可以让该参数始终存在当前请求中。然后就能从 路由中间件 调用此方法来访问当前请求:

  1. <?php
  2. namespace App\Http\Middleware;
  3. use Closure;
  4. use Illuminate\Http\Request;
  5. use Illuminate\Support\Facades\URL;
  6. use Symfony\Component\HttpFoundation\Response;
  7. class SetDefaultLocaleForUrls
  8. {
  9. /**
  10. * 处理传入的请求
  11. *
  12. * @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
  13. */
  14. public function handle(Request $request, Closure $next): Response
  15. {
  16. URL::defaults(['locale' => $request->user()->locale]);
  17. return $next($request);
  18. }
  19. }

一旦设置了 php locale 参数的默认值,你就不再需要通过辅助函数 php route 生成 URL 时传递它的值。

默认 URL & 中间件优先级
设置 URL 的默认值会影响 Laravel 对隐式模型绑定的处理。因此,你应该通过设置中间件优先级来确保在 Laravel 自己的 php SubstituteBindings 中间件执行之前设置 URL 的默认值。你可以通过在你的应用的 HTTP kernel 文件中的 php $middlewarePriority 属性里把你的中间件放在 php SubstituteBindings 中间件之前。

php $middlewarePriority 这个属性在 php Illuminate\Foundation\Http\Kernel 这个基类里。你可以复制一份到你的应用程序的 HTTP kernel 文件中以便做修改:

  1. /**
  2. * 根据优先级排序的中间件列表
  3. *
  4. * 这将保证非全局中间件按照既定顺序排序
  5. *
  6. * @var array
  7. */
  8. protected $middlewarePriority = [
  9. // ...
  10. \App\Http\Middleware\SetDefaultLocaleForUrls::class,
  11. \Illuminate\Routing\Middleware\SubstituteBindings::class,
  12. // ...
  13. ];