我的路由有问题,所以任何帮助将不胜感激?
我将如何为以下内容设置路由规则:
/MyUrl/edit/
/MyUrl/edit/[something]
并且 [something] 作为变量发送过来。
我正在使用 symfony 1.4 在推进中执行此操作。
谢谢
我的路由有问题,所以任何帮助将不胜感激?
我将如何为以下内容设置路由规则:
/MyUrl/edit/
/MyUrl/edit/[something]
并且 [something] 作为变量发送过来。
我正在使用 symfony 1.4 在推进中执行此操作。
谢谢
我建议你阅读教程- JOBEET
yourFirstRout:
url: /yourFirstRout/edit
param: { module: yourModule, action: edit }
yourSecondRout:
url: /yourSecondRout/edit/:something
param: { module: yourModule, action: editEntry }
something - 是一个参数,例如 id。在 action editEntry中,您可以从request获取此参数:
$something = $request->getParameter('something');
然后您可以通过此参数在数据库条目中搜索。