2014-10-30 57 views
1

我正在使用Symfony,我想將用戶重定向到頁面中的特定框架 那麼,如何將此<a href="index.html#about"/>轉換爲樹枝?我試過<a href="{{path('pl_index')}}#about"/>但它不起作用重定向到頁面#關於使用symfony和樹枝

+0

'不work'是非常模糊的。你是什​​麼意思? – 2014-10-30 09:47:50

回答

0

在樹枝上你可以使用{{path('_ welcome')}}它會將你發送到你的home索引,檢查你的route.yml,你可以看到生成的路徑是什麼由symfony。

例如,這是我config.yml:

//savabundle config.yml 
    sava_inventario_construccion: 
     path:  /productos/construccion 
     defaults: { _controller: savaInventarioBundle:Inventario:construccion } 
    sava_inventario_index: 
     path:  /productos/ 
     defaults: { _controller: savaInventarioBundle:Inventario:index } 

如果我想生成www.mypage.com/productos/construccion#about鏈接,這是我的HTML看起來應該像什麼

<a href="{{path('sava_inventario_construccion') }}#about"/> 

你可以閱讀更多的在這裏 http://symfony.com/doc/current/book/templating.html

+0

謝謝,我試過的是「{{path('pl_index」)}}「#關於..現在它可以工作再次感謝 – Asmaa 2014-10-30 09:49:26