laravel框架总结 -- 路径分析

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel框架总结 -- 路径分析相关的知识,希望对你有一定的参考价值。

1.直接写绝对路径,这样会用在/goods/show前面加上域名

  <a href="/goods/show?id=<?php echo $item[‘id‘]; ?>">这是一个跳转</a>
 

2.分析使用route和url辅助函数

  2.1route()配合路由中的别名来使用
    route 函数生成指定路由名称网址:
      Route::get(‘user/profile‘, [‘as‘ => ‘profile‘, function ($id) { // }])
      $url = route(‘profile‘);
    如果该路由接受参数,你可以作为第二参数传递:
      Route::get(‘user/{id}/profile‘, [‘as‘ => ‘profile‘, function ($id) { // }]); $url = route(‘profile‘, [‘id‘ => 1]);
    这样的好处是当我们修改user/profile时候不用去我们工程的所有地方修改url跳转
    
    注意:
      关于传递参数,例如route(‘profile‘, [‘id‘ => 1,‘name‘=>test])
      当我们在创建路由时候有规则,参数先走规则,不符合规则,那么就相当于http://xxxxx.com?id=1&name=test
 
  2.2url()
    url 函数生成指定路径的完整网址:
      function url($path = null, $parameters = [], $secure = null)
    url()方法生成一个完整的网址。
      Route::get(‘user/profile‘, [‘as‘ => ‘profile‘, function ($id) { // }])
      echo url(‘user/profile‘);
 

3.进一步分析

  创建路由如下所示:
    Route::get(‘articles‘,[‘uses‘=>‘[email protected]‘,‘as‘=>‘articles.index‘]);
  要访问该URL可以通过如下形式:
    //URL方式
      <a href="{{ url(‘/articles‘) }}">
    //Route方式
      <a href="{{ URL::route(‘articles.index‘) }}">
    //Action方式
      <a href="{{ URL::action(‘[email protected]‘) }}">
  所以在路由配置中,每个参数的代表意义为:以下粗体部分别人对应url,action,router
    Route::get(‘articles‘,[‘users‘=>[email protected]‘,‘as‘=>‘articles.index‘]);
 

4.asset()的用法

  function asset($path, $secure = null)
  asset()方法用于引入 CSS/javascript/images 等文件,文件必须存放在public文件目录下。
  这样比直接引用的好处是,可以节省资源,压缩文件

 

以上是关于laravel框架总结 -- 路径分析的主要内容,如果未能解决你的问题,请参考以下文章

laraver框架学习------工厂模型填充测试数据

laravel框架(blade模板引擎)

php laravel框架学习笔记 基本工作原理

larave学习笔记1-安装配置

我想自学laraver,请诸位前辈给一些建议,谢谢

Larave中CSRF攻击