37

我得到以下信息:

<a href="{{ path('_be_activatecategory', {'id': category.id, 'active': 1}) }}">Aktivieren</a>

创建

/后端/类别/激活/8/1

然后我得到了

<a href="{{ path('_category', {'id': category.id}) }}">

这创造了

/category?id=1

看到不同?我想要的是在第二种情况下与第一种情况完全相同:

/类别/1

我该如何管理?为什么 path() 助手没有为我创建带有参数的正确 url?

编辑:

我的路由如下所示:

/**
 * @Route("/category/{id}", name="_category")
 * @Template()
 */
public function categoryAction($id)
{
4

4 回答 4

7

确保您的routing.yml文件已'id'在其中指定。换句话说,它应该看起来像:

_category:
    path: /category/{id}
于 2013-03-28T18:44:54.637 回答
6

active设置路由中参数的默认值。

于 2013-03-28T18:40:17.720 回答
4

在树枝中:

{% 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
    ));
}
于 2017-10-06T09:28:14.020 回答
0
/**
 * @Route("/category/{id}", name="_category")
 * @Route("/category/{id}/{active}", name="_be_activatecategory")
 * @Template()
 */
public function categoryAction($id, $active = null)
{ .. }

五月有效。

于 2016-07-12T17:30:02.553 回答