gpt4 book ai didi

javascript - 在 Symfony2 中通过 ajax 提交表单

转载 作者:行者123 更新时间:2023-11-29 19:30:16 26 4
gpt4 key购买 nike

我有一个 Action ,首先需要通过 ajax 呈现表单,然后需要更新现有值。我已经得到了具有正确值的呈现表单,但是当我单击通过 ajax 提交表单时,我无法阻止表单提交,我有这个脚本:

 $('#edit-comment').click(function (e) {
e.preventDefault();
console.log(1);
});

但是提交仍然有效!我做错了什么。而且我不知道我需要如何在编辑操作中处理提交的表单。这是它的现有部分:

 /**
* @Route("/edit/comment", name="chat_edit", options={"expose"=true})
*/
public function editAction(Request $request)
{
$comment_id = json_decode($request->getContent(), true)['commentId'];
$comment = $this->get('comment.repository')->find($comment_id);
$form = $this->createForm(new CommentType(), $comment);

return $this->render("ChatCommentBundle:Comment:form.html.twig",
array('form' => $form->createView())
);
}

链接到 gist with form type

最佳答案

更新:

原来的答案(下面)仍然适用,但考虑到表单实际上是使用 AJAX 加载的,您不能在 $(document).ready 回调中绑定(bind)事件监听器。对您来说最好的选择是使用事件委托(delegate)。这是通过将事件监听器附加到 DOM 元素来完成的,该 DOM 元素确实从一开始就存在,但让该监听器为以后可能添加的元素拾取事件。例如:body 元素将始终存在,因此您可以在那里监听表单提交,该表单是否存在无关紧要:

$('body').on('submit', '#form-id', function(e)
{
console.log('#form-id was submitted, do AJAX => submission stopped');
return false;
//or
e.preventDefault();
e.stopPropagation();
});

很好地解释了为什么以及如何工作 here .归结为所有事件都通过目标节点的所有父 DOM 元素这一事实,因此您可以在 DOM 中的任何位置附加监听器,并在事件到达目标之前处理事件。
我想this old answer of mine也可以解释一件事或两件事。它不使用 jQ,但包含 jQ 内部用于委托(delegate)的代码的简化版本。


您阻止了 $('#edit-comment') 上点击事件的默认效果,但该事件仍会传播到表单。您可能还想添加 e.stopPropagation()。或者简单地从回调中return false;(这会阻止默认的停止传播)。

但是,防止提交表单的更好方法是使用 submit 事件,并在那里停止提交:

$('#form-id').on('submit', function(e)
{
console.log('Do ajax call here');
return false;
//or
e.preventDefault();
e.stopPropagation();
});

关于javascript - 在 Symfony2 中通过 ajax 提交表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28193902/

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