菜谱项目

map_in_map_defaults.xml 776B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <routes xmlns="http://symfony.com/schema/routing"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://symfony.com/schema/routing
  5. http://symfony.com/schema/routing/routing-1.0.xsd">
  6. <route id="blog" path="/blog">
  7. <default key="_controller">
  8. <string>AcmeBlogBundle:Blog:index</string>
  9. </default>
  10. <default key="values">
  11. <map>
  12. <map key="map">
  13. <bool key="public">true</bool>
  14. <int key="page">1</int>
  15. <float key="price">3.5</float>
  16. <string key="title">foo</string>
  17. </map>
  18. </map>
  19. </default>
  20. </route>
  21. </routes>