這篇文章給大家分享的是有關Symfony2中系統(tǒng)路由的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
富平網站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網頁設計、網站建設、微信開發(fā)、APP開發(fā)、響應式網站開發(fā)等網站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站2013年開創(chuàng)至今到現(xiàn)在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選創(chuàng)新互聯(lián)建站。具體如下:
漂亮的URL絕對是一個嚴肅的web應用程序必須做到的,這種方式使index.php?article_id=57這類的丑陋URL被隱藏,由更受歡迎的像 /read/intro-to-symfony 來替代。
擁有靈活性更為重要,如果你要改變一個頁面的URL,比如從/blog 到 /new 怎么辦?
有多少鏈接需要你找出來并更新呢? 如果你使用Symfony的router,這種改變將變得很簡單。
Symfony2 router讓你定義更具創(chuàng)造力的URL,你可以map你的應用程序的不同區(qū)域。
創(chuàng)建復雜的路由并map到controllers并可以在模板和controllers內部生成URLs
從bundles(或者其他任何地方)加載路由資源
調試你的路由
路由活動
一個路徑是一個從URL 模式到一個controller的綁定。
比如假設你想匹配任何像 /blog/my-post 或者 /blog/all-about-symfony的路徑并把它們發(fā)送到一個controller在那里可以查找并渲染blog實體。
該路徑很簡單:
YAML格式:
# app/config/routing.yml blog_show: pattern: /blog/{slug} defaults: {_controller: AcmeBlogBundle:Blog:show }
XML格式:
<!-- app/config/routing.xml --> <?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="blog_show" pattern="/blog/{slug}"> <default key="_controller">AcmeBlogBundle:Blog:show</default> </route> </routes>
PHP代碼格式:
// app/config/routing.php use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('blog_show', new Route('/blog/{slug}', array( '_controller' => 'AcmeBlogBundle:Blog:show', )));
blog_show路徑定義了一個URL模式,它像/blog/* 這里的通配符被命名為slug。對于URL/blog/my-blog-post,slug變量會得到值 my-blog-post。
_controller參數(shù)是一個特定的鍵,它告訴Symfogy當一個URL匹配這個路徑時哪個controller將要被執(zhí)行。
_controller字符串被稱為邏輯名。它的值會按照特定的模式來指定具體的PHP類和方法。
// src/Acme/BlogBundle/Controller/BlogController.php namespace Acme\BlogBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; class BlogController extends Controller { public function showAction($slug) { $blog = // use the $slug variable to query the database return $this->render('AcmeBlogBundle:Blog:show.html.twig', array( 'blog' => $blog, )); } }
現(xiàn)在當你再訪問/blog/my-post 時,showAction controller將被執(zhí)行并且$slug變量的值為my-post
Symfogy2 的路由器目標:映射一個請求的URL到controller。
路由:內部的秘密
當一個請求發(fā)送到應用程序時,它包含一個客戶端想要獲取資源的地址。這個地址叫做URL或者URI??赡苁?contact,/blog/read-me或者其它樣式。
GET /blog/my-blog-post
Symfony2 路由系統(tǒng)的目標是解析這些URL并決定哪個controller應該被執(zhí)行來回復該請求。
整個路由過程可以分為:
1.請求被Symfony2的前端控制器(app.php)處理。
2.Symfony2核心(kernel)要求路由器檢查請求。
3.路由器匹配接收到的URL到一個特定的路徑并返回有關信息,包括應該被執(zhí)行的controller。
4.Symfony2核心執(zhí)行該controller,該controller最終會返回一個Response對象。
路由器層就是一個把接收到的URL轉換為要執(zhí)行的特定controller的工具。
創(chuàng)建路由
Symfony會從一個單獨的路由配置文件中加載你應用程序的所有路由。該文件通常為 app/config/routing.yml。 它可以被配置成包括XML或者PHP文件等文件。
YAML格式:
# app/config/config.yml framework: # ... router: { resource: "%kernel.root_dir%/config/routing.yml" }
XML格式:
<!-- app/config/config.xml --> <framework:config ...> <!-- ... --> <framework:router resource="%kernel.root_dir%/config/routing.xml" /> </framework:config>
PHP代碼格式:
// app/config/config.php $container->loadFromExtension('framework', array( // ... 'router' => array('resource' => '%kernel.root_dir%/config/routing.php'), ));
基礎路由配置
定義一個路由很簡單,通常一個應用程序擁有很多路由。一個基礎路由是由兩部分組成:pattern部分和defaults數(shù)組部分。
比如:
YAML格式:
_welcome: pattern: / defaults: { _controller: AcmeDemoBundle:Main:homepage }
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="_welcome" pattern="/"> <default key="_controller">AcmeDemoBundle:Main:homepage</default> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('_welcome', new Route('/', array( '_controller' => 'AcmeDemoBundle:Main:homepage', ))); return $collection;
該路由匹配首頁(/)并映射到AcmeDemoBundle:Main:homepage controller。_controller字符串被Symfony2翻譯成一個相應的PHP函數(shù)并被執(zhí)行。
帶占位符路由
當然,路由系統(tǒng)支持更多有趣的路由。許多路由會包含一個或者多個被命名的通配符占位符。
YAML格式:
blog_show: pattern: /blog/{slug} defaults: { _controller: AcmeBlogBundle:Blog:show }
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="blog_show" pattern="/blog/{slug}"> <default key="_controller">AcmeBlogBundle:Blog:show</default> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('blog_show', new Route('/blog/{slug}', array( '_controller' => 'AcmeBlogBundle:Blog:show', ))); return $collection;
該模式將匹配任何類似/blog/*形式的URL。匹配占位符{slug}的值將會在controller中被使用。換句話說,如果URL是/blog/hello-world,則$slug變量值是hello-world, 該值將能在controller中被使用。該模式不會匹配像/blog, 因為默認情況下所有的占位符都是必須的。 當然可以通過在defaults數(shù)組中給這些占位符賦來改變它。
必需和可選占位符
我們來添加一個新的路由,顯示所有可用的blog列表。
YAML格式:
blog: pattern: /blog defaults: { _controller: AcmeBlogBundle:Blog:index }
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="blog" pattern="/blog"> <default key="_controller">AcmeBlogBundle:Blog:index</default> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('blog', new Route('/blog', array( '_controller' => 'AcmeBlogBundle:Blog:index', ))); return $collection;
到目前為止,我們的路由都是非常簡單的路由模式。它們包含的非占位符將會被精確匹配。
如果你想該路由能夠支持分頁,比如讓/blog/2 顯示第二頁的blog,那就需要為之前的路由添加一個新的{page}占位符。
YAML格式:
blog: pattern: /blog/{page} defaults: { _controller: AcmeBlogBundle:Blog:index }
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="blog" pattern="/blog/{page}"> <default key="_controller">AcmeBlogBundle:Blog:index</default> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('blog', new Route('/blog/{page}', array( '_controller' => 'AcmeBlogBundle:Blog:index', ))); return $collection;
跟之前的{slug}占位符一樣{page}占位符將會在你的controller內部可用,它的值可以用于表示要顯示的blog值的頁碼。但是要清楚,因為占位符默認情況下都是必需的,該路由也將不再匹配之前的/blog URL,這時候你如果還像看第一頁的話,就必須通過/blog/1 URL來訪問了。要解決該問題,可以在該路由的defaults數(shù)組中指定{page}的默認值。
YAML格式:
blog: pattern: /blog/{page} defaults: { _controller: AcmeBlogBundle:Blog:index, page: 1 }
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="blog" pattern="/blog/{page}"> <default key="_controller">AcmeBlogBundle:Blog:index</default> <default key="page">1</default> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('blog', new Route('/blog/{page}', array( '_controller' => 'AcmeBlogBundle:Blog:index', 'page' => 1, ))); return $collection;
通過添加page到defaults鍵, {page}占位符就不再是必需的。這時候 /blog將會被匹配并且page參數(shù)被設置為1,URL /blog/2 也會被匹配。
添加要求約束
看看下面這些路由:
YAML格式:
blog: pattern: /blog/{page} defaults: { _controller: AcmeBlogBundle:Blog:index, page: 1 } blog_show: pattern: /blog/{slug} defaults: { _controller: AcmeBlogBundle:Blog:show }
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="blog" pattern="/blog/{page}"> <default key="_controller">AcmeBlogBundle:Blog:index</default> <default key="page">1</default> </route> <route id="blog_show" pattern="/blog/{slug}"> <default key="_controller">AcmeBlogBundle:Blog:show</default> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('blog', new Route('/blog/{page}', array( '_controller' => 'AcmeBlogBundle:Blog:index', 'page' => 1, ))); $collection->add('blog_show', new Route('/blog/{show}', array( '_controller' => 'AcmeBlogBundle:Blog:show', ))); return $collection;
你發(fā)現(xiàn)問題了嗎?注意這兩個路由都能匹配像/blog/* 類型的URL。Symfony只會選擇第一個與之匹配的路由。
換句話說,blog_show將永遠不會被像/blog/* 類型的URL匹配。而像 /blog/my-blog-post這樣的URL也會被blog路由匹配,并且page變量會獲得my-blog-post這樣的值。
這肯定不可以,那么怎么辦呢?答案是給路由添加約束要求requirements。
在blog路由中占位符{page}理想狀態(tài)下只匹配整數(shù)值。幸運的是正則表達可以很容易的滿足這一要求。
YAML格式:
blog: pattern: /blog/{page} defaults: { _controller: AcmeBlogBundle:Blog:index, page: 1 } requirements: page: \d+
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="blog" pattern="/blog/{page}"> <default key="_controller">AcmeBlogBundle:Blog:index</default> <default key="page">1</default> <requirement key="page">\d+</requirement> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('blog', new Route('/blog/{page}', array( '_controller' => 'AcmeBlogBundle:Blog:index', 'page' => 1, ), array( 'page' => '\d+', ))); return $collection;
這里 \d+ 約束是一個正則表達式,它指定了{page}只接受整數(shù)。這樣像/blog/my-blog-post就不再被匹配了。這時候,它才會被blog_show路由匹配。因為參數(shù)的約束都是正則表達式,所以其復雜程度和靈活性都有你來決定了。
假設home頁使用兩種語言則可以這樣配置路由:
YAML格式:
homepage: pattern: /{culture} defaults: { _controller: AcmeDemoBundle:Main:homepage, culture: en } requirements: culture: en|fr
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="homepage" pattern="/{culture}"> <default key="_controller">AcmeDemoBundle:Main:homepage</default> <default key="culture">en</default> <requirement key="culture">en|fr</requirement> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('homepage', new Route('/{culture}', array( '_controller' => 'AcmeDemoBundle:Main:homepage', 'culture' => 'en', ), array( 'culture' => 'en|fr', ))); return $collection;
添加HTTP 方法約束
除了URL,你還可以匹配請求的方法(GET,HEAD,POST,PUT,DELETE等)。假設你有一個聯(lián)系表單有兩個controller,一個用于顯示表單(使用GET請求)一個用于處理提交的表單(POST請求)。它的配置如下:
YAML格式:
contact: pattern: /contact defaults: { _controller: AcmeDemoBundle:Main:contact } requirements: _method: GET contact_process: pattern: /contact defaults: { _controller: AcmeDemoBundle:Main:contactProcess } requirements: _method: POST
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="contact" pattern="/contact"> <default key="_controller">AcmeDemoBundle:Main:contact</default> <requirement key="_method">GET</requirement> </route> <route id="contact_process" pattern="/contact"> <default key="_controller">AcmeDemoBundle:Main:contactProcess</default> <requirement key="_method">POST</requirement> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('contact', new Route('/contact', array( '_controller' => 'AcmeDemoBundle:Main:contact', ), array( '_method' => 'GET', ))); $collection->add('contact_process', new Route('/contact', array( '_controller' => 'AcmeDemoBundle:Main:contactProcess', ), array( '_method' => 'POST', ))); return $collection;
盡管這兩個路由擁有同一個URL模式定義(/contact),但是第一個路由只會匹配GET請求,而第二個只會匹配POST請求。這就意味著你可以通過同一個URL來顯示表單并提交表單,而用不同的controller對他們進行處理。如果沒有指定_method約束,那么該路由會匹配所有請求方法。跟其它約束一樣,_method約束也接受正則表達式,如果只想匹配GET或者POST那么你可以用GET|POST
高級路由例子:
Symfony2中具備一切讓你創(chuàng)建任何形式路由的條件。
YAML格式:
article_show: pattern: /articles/{culture}/{year}/{title}.{_format} defaults: { _controller: AcmeDemoBundle:Article:show, _format: html } requirements: culture: en|fr _format: html|rss year: \d+
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="article_show" pattern="/articles/{culture}/{year}/{title}.{_format}"> <default key="_controller">AcmeDemoBundle:Article:show</default> <default key="_format">html</default> <requirement key="culture">en|fr</requirement> <requirement key="_format">html|rss</requirement> <requirement key="year">\d+</requirement> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('homepage', new Route('/articles/{culture}/{year}/{title}.{_format}', array( '_controller' => 'AcmeDemoBundle:Article:show', '_format' => 'html', ), array( 'culture' => 'en|fr', '_format' => 'html|rss', 'year' => '\d+', ))); return $collection;
上面的路由,在匹配時只會匹配{culture}部分值為en或者fr并且{year}的值為數(shù)字的URL。該路由還告訴我們,可以用在占位符之間使用區(qū)間代替斜線。
它能夠匹配如下URL:
/articles/en/2010/my-post
/articles/fr/2010/my-post.rss
這其中有個特殊的路由參數(shù) _format,在使用該參數(shù)時,其值變?yōu)檎埱蟾袷?。這種請求格式相當于Respose對象的Content-Type,比如json請求格式會翻譯成一個Content-Type為application/json.該參數(shù)可以用于在controller中為每個_format渲染一個不同的模板。它是一個很強的方式來渲染同一個內容到不同的格式。
特殊的路由參數(shù):
正如你所看到的,每一個路由參數(shù)或者默認值最終都是作為一個controller方法輸入參數(shù)被使用。另外,有三個參數(shù)比較特別,它們每一個都在你的應用程序中增加一個功能。
_controller: 這個參數(shù)決定了當路由匹配時,哪個controller被執(zhí)行。
_format: 用于設置請求格式。
_locale: 用于在session上設置本地化。
Controller的命名模式:
每一個路由必須有一個_controller參數(shù),它決定了當路由匹配時哪個controller應該被執(zhí)行。該參數(shù)使用單一的字符串模式,被稱為logical controller name。
通過它Symfony可以映射到一個特定的PHP方法和類。該模式有三部分,每一部分用冒號分割開:
bundle:controller:action
比如_controller 的值為 AcmeBlogBundle:Blog:show 意思是AcmeBlogBundle bundle中BlogController類里面的showAction方法。
// src/Acme/BlogBundle/Controller/BlogController.php namespace Acme\BlogBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; class BlogController extends Controller { public function showAction($slug) { // ... } }
Symfony會自動把它們的添加相應的后綴,Blog=>BlogController, show => showAction。
你也可以使用它的完全限定名和方法來給_controller賦值,Acme\BlogBundle\Controller\BlogController::showAction 但一般為了簡潔靈活而是用邏輯名稱。另外除了上面兩種形式外,Symfony還支持第三種方式只有一個冒號分割符,如service_name:indexAction來為_controller賦一個作為服務使用的controller。
路由參數(shù)和控制器參數(shù)
路由參數(shù)非常重要,因為每一個路由參數(shù)都會轉變成一個控制器參數(shù)被在方法中使用。
public function showAction($slug) { // ... }
事實上,全部的defaults集合和表單的參數(shù)值合并到一個單獨的數(shù)組中。這個數(shù)組中的每個鍵都會成為controller方法的參數(shù)。換句話說,你的controller方法的每一個參數(shù),Symfony都會從路由參數(shù)中查找并把找到的值賦給給參數(shù)。上面例子中的變量 $culture, $year,$title,$_format,$_controller 都會作為showAction()方法的參數(shù)。因為占位符和defaults集合被合并到一起,即使$_controller變量也是一樣。你也可以使用一個特殊的變量$_route 來指定路由的名稱。
包括外部路由資源
所有的路由資源的都是通過一個單一的配置文件導入的。通常是app/config/routing.yml。當然你可能想從別處導入路由資源,比如你定義的bundle中的路由資源,你可以這樣導入:
YAML格式:
# app/config/routing.yml acme_hello: resource: "@AcmeHelloBundle/Resources/config/routing.yml"
XML格式:
<!-- app/config/routing.xml --> <?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <import resource="@AcmeHelloBundle/Resources/config/routing.xml" /> </routes>
PHP代碼格式:
// app/config/routing.php use Symfony\Component\Routing\RouteCollection; $collection = new RouteCollection(); $collection->addCollection($loader->import("@AcmeHelloBundle/Resources/config/routing.php")); return $collection;
在使用YAML導入資源時,鍵(比如acme_hello)是沒有意義的,只是用來保證該資源不被其它行覆蓋。使用resources key加載給定的路由資源。在這個示例中資源是一個全路徑文件,@AcmeHelloBundle是簡寫語法,它會被指向bundle路徑。被導入的文件內容如下:
YAML格式:
# src/Acme/HelloBundle/Resources/config/routing.yml acme_hello: pattern: /hello/{name} defaults: { _controller: AcmeHelloBundle:Hello:index }
XML格式:
<!-- src/Acme/HelloBundle/Resources/config/routing.xml --> <?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="acme_hello" pattern="/hello/{name}"> <default key="_controller">AcmeHelloBundle:Hello:index</default> </route> </routes>
PHP代碼格式:
// src/Acme/HelloBundle/Resources/config/routing.php use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('acme_hello', new Route('/hello/{name}', array( '_controller' => 'AcmeHelloBundle:Hello:index', ))); return $collection;
這個文件中的路由會被解析并跟主要的路由文件內容一起被加載。
給導入的路由資源添加前綴
你可以為導入的路由資源選擇一個前綴,比如說假設你想acme_hello路由有一個這樣的 匹配模式:/admin/hello/{name} 而不是直接的 /hello/{name}
那么你在導入它的時候可以為其指定prefix。
YAML格式:
# app/config/routing.yml acme_hello: resource: "@AcmeHelloBundle/Resources/config/routing.yml" prefix: /admin
XML格式:
<!-- app/config/routing.xml --> <?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <import resource="@AcmeHelloBundle/Resources/config/routing.xml" prefix="/admin" /> </routes>
PHP代碼格式:
// app/config/routing.php use Symfony\Component\Routing\RouteCollection; $collection = new RouteCollection(); $collection->addCollection($loader->import("@AcmeHelloBundle/Resources/config/routing.php"), '/admin'); return $collection;
當該外部路由資源加載的時候字符串 /admin 將被插入到匹配模式的前面。
可視化并調試路由
當你添加和個性化路由時,能夠看到它并能獲取一些細節(jié)信息將是非常有用的。一個好的查看你應用程序的路由的方法是通過router:debug 命令行工具。
在你項目目錄下執(zhí)行如下命令:
$ php app/console router:debug
將會輸出你應用程序的所有路由。你也可以在該命令后面添加某個路由的名字來獲取單個路由信息
$ php app/console router:debug article_show
生成URL
一個路由系統(tǒng)應該也能用來生成URL。事實上,路由系統(tǒng)是一個雙向的系統(tǒng),映射URL到controller+parameters 和 回對應到 一個URL。可以使用match()和generate()方法來操作。比如:
$params = $router->match('/blog/my-blog-post'); // array('slug' => 'my-blog-post', '_controller' => 'AcmeBlogBundle:Blog:show') $uri = $router->generate('blog_show', array('slug' => 'my-blog-post')); // /blog/my-blog-post
要生成一個URL,你需要指定路由的名稱(比如 blog_show)和任意的通配符(比如:slug=my-blog-post)作為參數(shù)。通過這些信息,可以生成任意的URL。
class MainController extends Controller { public function showAction($slug) { // ... $url = $this->get('router')->generate('blog_show', array('slug' => 'my-blog-post')); } }
那么如何從模板內部來生成URL呢?如果你的應用程序前端使用了AJAX請求,你也許想能夠基于你的路由配置在javascript中生成URL,通過使用
FOSJsRoutingBundle(https://github.com/FriendsOfSymfony/FOSJsRoutingBundle) 你可以做到:
var url = Routing.generate('blog_show', { "slug": 'my-blog-post'});
生成絕對路徑的URL
默認的情況下,路由器生成相對路徑的URL(比如 /blog).要生成一個絕對路徑的URL,只需要傳入一個true到generate方法作為第三個參數(shù)值即可。
$router->generate('blog_show', array('slug' => 'my-blog-post'), true); // http://www.example.com/blog/my-blog-post
當生成一個絕對路徑URL時主機是當前請求對象的主機,這個是基于PHP提供的服務器信息自動決定的。當你需要為運行子命令行的腳本生成一個絕對URL時,你需要在Request對象上手動設置期望的主機頭。
$request->headers->set('HOST', 'www.example.com');
生成帶有查詢字符串的URL
generate()帶有一個數(shù)組通配符值來生成URI。 但是如果你傳入額外的值,它將被添加到URI作為查詢字符串:
$router->generate('blog', array('page' => 2, 'category' => 'Symfony')); // /blog/2?category=Symfony
從模板中生成URL
最常用到生成URL的地方是從模板中鏈接兩個頁面時,這來需要使用一個模板幫助函數(shù):
Twig格式:
<a href="{{ path('blog_show', { 'slug': 'my-blog-post' }) }}"> Read this blog post. </a>
PHP格式:
<a href="<?php echo $view['router']->generate('blog_show', array('slug' => 'my-blog-post')) ?>"> Read this blog post. </a>
也可以生成絕對路徑:
Twig格式:
<a href="{{ url('blog_show', { 'slug': 'my-blog-post' }) }}"> Read this blog post. </a>
PHP格式:
<a href="<?php echo $view['router']->generate('blog_show', array('slug' => 'my-blog-post'), true) ?>"> Read this blog post. </a>
強制路由使用HTTPS或者HTTP
有時候為了安全起見,你需要你的站點必須使用HTTPS協(xié)議訪問。這時候路由組件可以通過_scheme 約束來強迫URI方案。比如:
YAML格式:
secure: pattern: /secure defaults: { _controller: AcmeDemoBundle:Main:secure } requirements: _scheme: https
XML格式:
<?xml version="1.0" encoding="UTF-8" ?> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> <route id="secure" pattern="/secure"> <default key="_controller">AcmeDemoBundle:Main:secure</default> <requirement key="_scheme">https</requirement> </route> </routes>
PHP代碼格式:
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\Route; $collection = new RouteCollection(); $collection->add('secure', new Route('/secure', array( '_controller' => 'AcmeDemoBundle:Main:secure', ), array( '_scheme' => 'https', ))); return $collection;
上面的路由定義就是強迫secure路由使用HTTPS協(xié)議訪問。
反之,當生成secure 的URL的時候,路由系統(tǒng)會根據當前的訪問協(xié)議方案生成相應的訪問協(xié)議。比如當前是HTTP,則會自動生成HTTPS訪問;如果是HTTPS訪問,那么就也會相應的生成HTTPS訪問。
# 如果方案是 HTTPS {{ path('secure') }} # 生成 /secure # 如果方案是 HTTP {{ path('secure') }} # 生成 https://example.com/secure
當然你也可以通過設置_scheme為HTTP,來強制使用HTTP訪問協(xié)議。除了上面說的強迫使用HTTPS協(xié)議訪問的設置方法外,還有一種用于站點區(qū)域設置
使用requires_channel 比如你想讓你站點中/admin 下面的所有路由都必須使用HTTPS協(xié)議訪問,或者你的安全路由定義在第三方bundle時使用。
感謝各位的閱讀!關于“Symfony2中系統(tǒng)路由的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
本文標題:Symfony2中系統(tǒng)路由的示例分析-創(chuàng)新互聯(lián)
本文網址:http://jinyejixie.com/article30/deccso.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供網站內鏈、App開發(fā)、網站維護、手機網站建設、靜態(tài)網站、網站策劃
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內容