gpt4 book ai didi

jquery - ajax请求symfony 3后net::ERR_CONNECTION_RESET

转载 作者:行者123 更新时间:2023-12-01 01:31:45 27 4
gpt4 key购买 nike

我尝试使用ajax将数据从我的输入发送到我的 Controller 以将数据保存在数据库中,但我收到了此错误我试图发送数据,但我的 Controller 操作没有收到任何内容

error error

这是我的脚本

      <form method="post">
<textarea id="txt" class="form-control input-lg no-border" rows="2"
placeholder="What are you doing?..."></textarea>

<div class="panel-footer">
<button type="button" class="btn btn-success pull-right mt-5" id="btnpost">POST</button>
<ul class="nav nav-pills">
<li><a href="#"><i class="fa fa-map-marker"></i></a></li>
<li><a href="#"><i class="fa fa-camera"></i></a></li>
<li><a href="#"><i class="fa fa-smile-o"></i></a></li>
</ul><!-- /.nav nav-pills -->
</div><!-- /.panel-footer -->
</form>
<script>
$("#btnpost").click(function () {
var text = $('#txt').val();
$.ajax({
type: 'POST',
url: '{{ path("group_new",{'id':id}) }}',
data: { desc:text }
})
})

</script>

这是我的 Controller 操作

   public function newGroupeAction(Request $request , $id)
{
$em = $this->getDoctrine()->getManager();

//get group description
$descgrp = $em->getRepository("GroupGroupBundle:Groupe")->findOneBy(array('id'=>$id))->getDescriptiongroupe();

// get member string
$str = $em->getRepository("GroupGroupBundle:Groupe")->findOneBy(array('id'=>$id));
//get array member with arrtibute
$member = $em->getRepository("GroupGroupBundle:Groupe")->getmemberlist($str->getMembres());

// get image string
$stri = $em->getRepository("GroupGroupBundle:Groupe")->findOneBy(array('id'=>$id));
// get array image with attribute
$images = $em->getRepository("GroupGroupBundle:Image")->getimagelist($stri->getListimage());


if ($request->isXmlHttpRequest() && $request->isMethod('POST')) {
$publication = new Publication();
$des = $request->get('desc');

$publication->setDescription($des);

var_dump('test');
$em = $this->getDoctrine()->getManager();
$em->persist($publication);
$em->flush();
return new Response('test');
}

return $this->render('@GroupGroup/layout/newGroupe.html.twig',array("id"=>$id,"mem"=>$member,"nb"=>sizeof($member),"img"=>$images,"desc"=>$descgrp,"imgnb"=>sizeof($images)));

}

最佳答案

我也遇到了类似的问题。你用APCu吗?

  • Symfony 3
  • Windows 10(64 位)
  • XAMPP 7.0.23(32 位)
    • OPcache
    • AP铜

我在 Chrome 或 Apache 2.4 自动终止进程上遇到了 AJAX 请求问题:net::ERR_CONNECTION_RESET...

我的解决方案(显着减少错误):在 php.ini 中禁用 APCU 配置。

关于jquery - ajax请求symfony 3后net::ERR_CONNECTION_RESET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42237419/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com