我在页面中有一组会话,我想使用AJAX将其删除。即,单击链接,而不必导航到新页面,只需删除会话,并在成功时显示一条消息。
现在,根据给定的答案( 对我仍然无效 ),我有以下内容:
控制者
use Symfony\Component\HttpFoundation\JsonResponse;
//..
public function ajaxRemoveSessionAction()
{
$session = $this->getRequest()->getSession();
$session->remove('name');
return new JsonResponse(array('success' => true));
}
路由:
ajax_remove_session:
pattern: /remove-session
defaults: { _controller: FooTestBundle:Page:ajaxRemoveSession }
枝条:
<a href="#" id="remove_session">Remove session</a>
<script type="text/javascript">
$(document).ready(function() {
$('#remove_session').click(function(){
event.preventDefault();
$.ajax({
url: {{ url('ajax_remove_session') }},
cache: false,
success: function(result){
$(".success").append(result);
}
});
});
});
</script>
带有在路由,控制器和模板中找到的所有代码
控制器:PageController.php
/src/Simon/TestBundle/Controller/PageController.php
<?php
namespace Simon\TestBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\JsonResponse;
class PageController extends Controller
{
public function helloAction($name)
{
$session = new Session();
$session->start();
$session->get('name', 'Drak');
$session->get('name');
$session->getFlashBag()->add('notice', 'Profile Updated');
$messages = null;
foreach($session->getFlashBag()->get('notice', array()) as $message){
$messages = $message;
}
return $this->render('SimonTestBundle:Page:index.html.twig', array('name' => $name.' '.$messages));
}
public function ajaxRemoveSessionAction()
{
// Destroy the desired session
$session = $this->getRequest()->getSession();
$session->remove('name');
return new JsonResponse(array('success' => true));
}
}
模板:细枝模板
/src/Simon/TestBundle/Resources/views/Page/index.html.twig
{% extends 'SimonTestBundle::layout.html.twig' %}
{% block body %}
<a href="#" id="remove_session">Remove session</a>
<script type="text/javascript">
$('#remove_session').click(function(e){
e.preventDefault();
$.ajax({
url: {{ url('ajax_remove_session') }},
cache: false,
success: function(html){
// do something on success
}
}).fail(function(event){
console.log(event);
});
});
});
</script>
{% endblock %}
路由:
/src/Simon/TestBundle/Resources/config/routing.yml
simon_test_homepage:
pattern: /hello/{name}
defaults: { _controller: SimonTestBundle:Page:hello }
ajax_remove_session:
pattern: /remove-session
defaults: { _controller: SimonTestBundle:Page:ajaxRemoveSession }
尝试将URL选项的值放在引号之间:
url: '{{ url('ajax_remove_session') }}',
我目前正在边学习边构建一个Symfony 5应用程序,该应用程序与现有的PHP项目共享一个数据库。我的问题是关于向由条令迁移创建的所有表添加前缀。我已经找到了一些关于我要做的事情的参考资料,但是由于一些参考资料有点过时,以及旧版本有不同的目录结构等原因,我正在努力实现它们。 这个链接看起来很有希望,但我不确定应该添加到哪里,它说: 您可以在library/DoctrineExtensions目录中
我希望命名空间“App\Controller\Api”中的所有控制器操作路由都具有前缀“/Api”。我还想在控制器中使用注释来设置其余的路由。 在Symfony 3中,这是通过编辑配置/routing.yml完成的: 在Symfony 4中如何执行此操作?我需要打包吗?由于我没有“配置/路由”,我将使用哪个配置文件。yml'?
一切都在问题中,有没有一种方法在extjs中显示€符号?我试过了 但对于欧洲货币(1)来说,它回报了我
问题内容: 您知道如何将新行添加到吗? 问题答案: 的后面处理表后面的所有数据。为了在表格中添加和删除行,您需要使用 要使用此模型创建表: 要添加一行: 您也可以使用此方法删除行。
问题内容: 我从http://code.google.com/p/google-gson/下载了Gson库。归档文件包含以下jar文件: google-gson-1.3 / gson-1.3-javadoc.jar google-gson-1.3 / gson-1.3.jar google-gson-1.3 / gson-1.3-sources.jar 如何设置Eclipse使其能够在项目中使用该
问题内容: 首先,我为我的英语疏忽表示歉意,我将解释我所有的问题。 首先我要在JTable中拥有JCheckBox。 我正在从列索引0和1的数据库中检索学生ID和学生姓名。我希望第三列应该是“缺席/在场”,这将首先根据JCheckbox值来获取学生是否在场。 这是我的JTable值代码: Attendance.java 此代码可从数据库中获取值,并将其保存到矢量中 AttendanceGUI.ja