admin管理员组文章数量:1345061
I'm a beginner in Symfony (version 2), I have a project achieved with plain basic PHP, and now I'm redoing my pages in dealing with Symfony framework, and arrived to my jquery ajax functions, surely, things gonna be different, I used to do like this:
$("#div").click(function(){
$.post("targetFile.php",{/*parameters*/,function(data){ });
});
Q: How to make that works on Symfony? What to put instead of targetFile.php? a route most probably. and what to do on the controller and router sides? I looked out on Google and here, but didn't get any clear answers. Regards.
I'm a beginner in Symfony (version 2), I have a project achieved with plain basic PHP, and now I'm redoing my pages in dealing with Symfony framework, and arrived to my jquery ajax functions, surely, things gonna be different, I used to do like this:
$("#div").click(function(){
$.post("targetFile.php",{/*parameters*/,function(data){ });
});
Q: How to make that works on Symfony? What to put instead of targetFile.php? a route most probably. and what to do on the controller and router sides? I looked out on Google and here, but didn't get any clear answers. Regards.
Share Improve this question edited Sep 7, 2014 at 15:21 Nadjib Mami asked Sep 26, 2011 at 10:58 Nadjib MamiNadjib Mami 5,8309 gold badges38 silver badges50 bronze badges 2- what are you having problems with? – JamesHalsall Commented Sep 26, 2011 at 12:23
- How to make a Jquery Ajax function works on Symfony? – Nadjib Mami Commented Sep 26, 2011 at 13:44
2 Answers
Reset to default 5You realy just have to replace the targetFile.php by a custom route of yours.
So if you have this in your routing.yml:
# app/config/routing.yml
hello:
pattern: /ajax/target
defaults: { _controller: AcmeHelloBundle:Site:index }
You can use this javascript:
$("#div").click(function(){
$.post("/ajax/target",{/*parameters*/,function(data){ });
});
On the Symfony2 side, the method indexAction of the SiteController of the AcmeHelloBundle will be called.
If you set inside routing.yml this:
_admin_ajax:
resource: "@SomethingAdminBundle/Controller/AjaxController.php"
type: annotation
prefix: /admin/ajax
... and inside controller, that will handle ajax call this:
/**
* @Route("/ajaxhandler", name="_admin_ajax_handler")
*/
public function handlerAction() {
$isAjax = $this->get('Request')->isXMLHttpRequest();
if ($isAjax) {
//...
return new Response('This is ajax response');
}
return new Response('This is not ajax!', 400);
}
... then inside for example TWIG template you should call it like this:
$("#div").click(function(){
$.post("{{ url('_admin_items_add') }}",{/*parameters*/,function(data){ });
});
... and the real route for your action will be generated with templating engine.
本文标签: javascriptAjax and Jquery in SymfonyStack Overflow
版权声明:本文标题:javascript - Ajax and Jquery in Symfony - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743762581a2534649.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论