我正在使用Symfony,我想將用戶重定向到頁面中的特定框架 那麼,如何將此<a href="index.html#about"/>
轉換爲樹枝?我試過<a href="{{path('pl_index')}}#about"/>
但它不起作用重定向到頁面#關於使用symfony和樹枝
1
A
回答
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
相關問題
- 1. 關於Authlogic和頁面重定向
- 2. Symfony 2 - 重定向()指定頁面
- 3. 語言切換器,使用symfony重定向到當前頁面
- 4. 樹枝內使用樹枝翻譯裏面的樹枝
- 5. symfony每隔幾秒將頁面重定向到頁面
- 6. 關閉Symfony 2 /樹枝中的轉義
- 7. 獲取有關樹枝硅石/ symfony的
- 8. symfony,sonata:內部頁面重定向
- 9. Symfony和PhpStorm樹枝沒有給我樹枝功能的建議
- 10. 沒有Symfony的樹枝使用
- 11. 使用Symfony 2的CDN樹枝資產
- 12. .htaccess將主頁重定向到「關於」頁面的桌面用戶
- 13. 使用樹枝分頁Codeigniter
- 14. 重定向到PHP頁面使用jQuery
- 15. 使用javascript重定向到html頁面
- 16. 使用.htaccess重定向到404頁面
- 17. 如何使dompdf處理樹枝頁面
- 18. 重定向管理員頁面和用戶到用戶頁面
- 19. Symfony異常頁面上的樹枝模板不呈現頭部
- 20. Symfony如何使用PHP和樹枝創建可重複使用的小部件
- 21. 重定向到了symfony與參數頁
- 22. Symfony 1.4 - 重定向到主頁
- 23. Symfony中的樹枝和控制器
- 24. Symfony 2.8樹枝和引導程序
- 25. 與symfony和樹枝jquery按鈕
- 26. 關於查詢刪除重定向到頁面?
- 27. symfony樹枝javascript函數undefined
- 28. symfony樹枝背景圖片
- 29. 的Symfony,樹枝,日期
- 30. symfony的樹枝變量
'不work'是非常模糊的。你是什麼意思? – 2014-10-30 09:47:50