我得到了以下内容:
<a href="{{ path('_be_activatecategory', {'id': category.id, 'active': 1}) }}">Aktivieren</a>
创建
/后端/类别/激活/ 8/1
然后我得到了
<a href="{{ path('_category', {'id': category.id}) }}">
创建
/类别?ID = 1
看到区别?我想要的是在第二种情况下与第一种情况完全相同:
/类别/ 1
我该如何管理?为什么path()帮助器没有为我创建带参数的正确url?
修改
我的路由看起来像这样:
/**
* @Route("/category/{id}", name="_category")
* @Template()
*/
public function categoryAction($id)
{
答案 0 :(得分:7)
确保您的routing.yml
文件中指定了'id'
。换句话说,它应该看起来像:
_category:
path: /category/{id}
答案 1 :(得分:6)
在路由中设置active
参数的默认值。
答案 2 :(得分:4)
在Twig:
{% for l in locations %}
<tr>
<td>
<input type="checkbox" class="filled-in" id="filled-in-box-{{ l.idLocation }}" />
<label for="filled-in-box-{{ l.idLocation }}"></label>
</td>
<td>{{ l.loc }}</td>
<td>{{ l.mun }}</td>
<td>{{ l.pro }}</td>
<td>{{ l.cou }}</td>
{#<td>
{% if l.active == 1 %}
<span class="fa fa-check"></span>
{% else %}
<span class="fa fa-close"></span>
{% endif %}
</td>#}
<td><a href="{{ url('admin_edit_location',{'id': l.idLocation}) }}" class="db-list-edit"><span class="fa fa-pencil-square-o"></span></a>
</td>
</tr>{% endfor %}
路线admin_edit_location
:
admin_edit_location:
path: /edit_location/{id}
defaults: { _controller: "AppBundle:Admin:editLocation" }
methods: GET
和控制器
public function editLocationAction($id){
// use $id
$em = $this->getDoctrine()->getManager();
$location = $em->getRepository('BackendBundle:locations')->findOneBy(array(
'id' => $id
));
}
答案 3 :(得分:0)
/**
* @Route("/category/{id}", name="_category")
* @Route("/category/{id}/{active}", name="_be_activatecategory")
* @Template()
*/
public function categoryAction($id, $active = null)
{ .. }
可能有效。