在 Symfony 2.5 中使用 ajax 设置实体属性(选择单选按钮)

set entity attribute (selecting a radio button) with ajax in Symfony 2.5

我想将 Ajax 集成到我的 Symfony 项目中(Symfony 2.5 和 jQuery 3)。当我 select 单选按钮时,我想更新实体的属性。现在,我可以获得 select 行的 ID。我已经搜索了如何实现这个,但我没有成功。

JS代码:

$(document).ready(function(){
    $("input:radio[name=locacion_destacada]").click(function () {
         var id = $(this).parent().parent().attr('dataId');
         alert(id);
         $.ajax({
             url: "/update-destacado",
             type: "POST",
             data: { id : id },
             success: function (response) {
                 alert(response);
             },
             error: function (XMLHttpRequest, textStatus, errorThrown) {
                 alert('Error: ' + errorThrown);
             }
         });

     });
});

非常感谢任何帮助。

您可以在控制器中通过在 ajax 的 url 中调用它来做到这一点:

url : {{ path('your_route', {'id': id})}};

并且在控制器功能中,您可以根据需要更新您的实体

您需要一个控制器操作,它由您的 "update-destacado" 路由调用。然后从请求中读取 ID 并更新您的实体。

我可以解决它。我遵循了这个page (answer n°8)的思路,也请记住你的回答。感谢您的帮助。

控制器代码:

public function DestacadoAction(Request $request, $id){

    $em = $this->getDoctrine()->getManager();

    //Encontrar la locacion que ya estaba como destacada y dejarla como destacado=false
    $locacionDestacadaAntigua = $em 
        ->getRepository('FilmsBundle:Locaciones') 
        ->findOneBy(
            array(
                'destacado' => true
            ));

    $locacionDestacadaAntigua->setDestacado(false);
    $em->persist($locacionDestacadaAntigua);
    $em->flush();

    $em = $this->getDoctrine()->getManager();

    //Dejar como destacada la nueva locacion
    $locacionDestacadaNueva = $this->getDoctrine() 
        ->getRepository('FilmsBundle:Locaciones') 
        ->findOneBy(
            array(
                'idLocacion' => $id
            ));
    $locacionDestacadaNueva->setDestacado(true);
    $em->persist($locacionDestacadaNueva);
    $em->flush();

    return new Response("Ha seleccionado la locación \"" . $locacionDestacadaNueva->getNombreLocacion() . "\" como destacada.");
}

JS代码:

$(document).ready(function(){
    $(".button").on("click", function (e) {
        $.post(this.href).done(function (response) {
            alert(response);
            location.reload();
        });
    });
});

树枝代码:

{% if locacion.destacado == true %}
    <td align="center">
        <a class="button" href="{{ path('admin_destacado_update', { 'id': locacion.idLocacion }) }}">
            <button class="btn btn-default">
                <i class="glyphicon glyphicon-ok"></i>
            </button>
        </a>
    </td>
{% else %}
    <td align="center">
        <a class="button" href="{{ path('admin_destacado_update', { 'id': locacion.idLocacion }) }}">
            <button class="btn btn-sm">
                <i class="glyphicon glyphicon-remove"></i>
            </button>
        </a>
    </td>
{% endif %}