控制器需要一个参数值 - 内部服务器错误500

时间:2013-08-23 14:53:45

标签: javascript jquery ajax forms symfony

使用Symfony2实现AJAX是如此困难,我现在看到了吗?

我的目标是实现一个单页应用程序,该应用程序显示用于创建帖子的表单(每个帖子都有帖子标题和帖子内容)。提交表单时,AJAX负责显示div#output中表单下方的帖子。

我的模板如下:

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

{% block body %}

    <form action="{{ path('post_creates', { 'id': entity.id }) }}" id="form_ajax" method="post" {{ form_enctype(form) }}>
        {{ form_widget(form) }}
        <p>
           <input type="submit" value="create" />
        </p>
    </form>

        <ul class="record_actions">
    <li>
        <a href="{{ path('post') }}">
            Back to the list
        </a>
    </li>
</ul>

<div id="output"></div>

{% endblock %}

{% block javascripts %}

    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
    <script src="http://jwpsrv.com/library/leLjogZ6EeOBvCIACusDuQ.js"></script>
    <script src="{{ asset('bundles/testblog/js/test2.js') }}"></script>

    <script>

$("#form_ajax").submit(function(){ 


    tinyMCE.get("test_bundle_blogbundle_posttype_postContent").save();

    var content= $("#test_bundle_blogbundle_posttype_postContent").val();

    var title  = $("#test_bundle_blogbundle_posttype_postTitle").val();

    $.ajax({
        type: "POST",
        url: "{{ path('post_creates', { 'id': entity.id }) }}",
        data: {datas:title, date:content},
        cache: false,
        success: function(data){

           $('#output').html(data);

        }
    });    
    return false;
});
</script>
{% endblock %}

控制器是:

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

     $request = $this->container->get('request');

     $entity  = new Post();

    if($request->isXmlHttpRequest())
    {
       $title = $request->request->get('datas');
       $content = $request->request->get('date');

        $em = $this->container->get('doctrine')->getEntityManager();

        if($title != '')
        { 


        $entity->setPostContent($content);

        $entity->setPostTitle($title);
        $id=$entity->getId();

            $em = $this->getDoctrine()->getManager();
            $em->persist($entity);
            $em->flush();


            $post = $em->getRepository('TESTBlogBundle:Post')->find($id);
        }
        else {

            $post = $em->getRepository('TESTBlogBundle:Post')->find($id);
        }

         $deleteForm = $this->createDeleteForm($id);


    return $this->container->get('templating')->renderResponse('TESTBlogBundle:Post:show.html.twig', array(
            'entity' => $post, 'id' => $id,
             'delete_form' => $deleteForm->createView(),  
            ));
    }
    else {
        return $this->indexAction();
    }

    }

我遇到以下问题:

Controller requires that you provide a value for the "$id" argument (because there is no default value or because there is a non optional argument after this one).

当我在控制器中var_dump $ id时,我总是为null。如果我在函数参数中传递一个值,我的控制器工作正常。我在Symfony2的知识不允许我找到我所缺少的东西。非常感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

答案在返回的错误消息中。

您通过Ajax调用的网址不包含$id的任何值。

根据您的操作定义,$id是必需的。你必须确保它始终提供。

<强>更新

当您运行第一次显示action的{​​{1}}时(可能是同一个操作或另一个操作),它会提供无效的template(不会不包含任何entity)。因此,当它构建您在id中使用的url时,它会调用一个不包含任何ajax call的网址。

按OP编辑:

在将数据保存到数据库之前,未定义id的参数$id。因此,将其从控制器的参数中删除,并通过删除$entity

将其从模板中删除