Symfony Как мне использовать функцию контроллера в twig?

#php #twig #symfony4

#php #twig #symfony4

Вопрос:

Я хочу использовать этот AdminController в twig:

 /**
 * @Route("/admin/user/delete", name="deleteUserById")
 */
public function deleteUserById(Request $request): Response
{
    $id = $request->query->get("id");
    $user = $this->getDoctrine()->getRepository(User::class)->find($id);
    $em = $this->getDoctrine()->getManager();
    $em->remove($user);
    $em->flush();
    return $this->redirectToRoute("getAllUsers");
}
 

Файл twig выглядит следующим образом:

 {% extends 'base.html.twig' %}

{% block title %}AdminPanel{% endblock %}
{% block stylesheets %}
    <link href="{{ asset('css/global.css') }}" rel="stylesheet"/>
{% endblock %}
{% block nav %}
<div>
    <a class="navbar-brand" href="{{ path('getAllDoctors') }}">Doctors</a>
    <a class="navbar-brand" href="{{ path('getAllApplications') }}">Applications</a>
    <a class="navbar-brand" href="{{ path('getAllPersons') }}">Persons</a>
    <a class="navbar-brand" href="{{ path('getAllPersons') }}">Admin</a>
</div>
{% endblock %}
{% block body %}
<h1>UserID and Email</h1>

<table class="table">
    <thead class="thead-dark">
    <tr>
        <th scope="col">#</th>
        <th scope="col">Email</th>
        <th scope="col">Delete</th>
    </tr>
    </thead>
    {% for user in users %}
        <tbody>
        <form method="post">
        <td> {{ user.id }}</td>
        <td>{{ user.email }}</td>
        <td>
            <button href=" {{ path('deleteUserById', {'POST' : (user.id)}) }}" 
            type="submit">Delete</button>
        </td>
        </form>
        </tbody>
    {% endfor %}
</table>
{% endblock %}
 

Я хочу иметь возможность удалять пользователя с помощью кнопки удаления. Но по какой-то причине я не могу заставить ее работать?
Я читал, что мне нужно использовать форму, но не могу найти хороший пример.

Спасибо за помощь.

Комментарии:

1. Просто для информации: если вы хотите использовать PHP-код в шаблонах twig, вы можете создать класс AppExtension, который расширяет Twig Extension AbstractExtension . В вашем приложении вы создаете некоторые функции и верхнюю часть: вы можете внедрять сервисы.

Ответ №1:

Это не лучшее решение, но на основе вашего кода вы можете сделать так :

 /**
 * @Route("/admin/user/delete/{id}", name="deleteUserById")
 */
public function deleteUserById(Request $request, $id): Response
{
    $user = $this->getDoctrine()->getRepository(User::class)->find($id);
    $em = $this->getDoctrine()->getManager();
    $em->remove($user);
    $em->flush();
    return $this->redirectToRoute("getAllUsers");
}
 

twig

 {% for user in users %}
    <tbody>
    <form method="post" action="{{ path('deleteUserById', {'id' : user.id}) }}">
    <td> {{ user.id }}</td>
    <td>{{ user.email }}</td>
    <td>
        <button type="submit">Delete</button>
    </td>
    </form>
    </tbody>
{% endfor %}