0

すべてのページで実行するコントローラーを作成しましたが、1つの側面を除いて機能しています..

base.html.twigが入れたファイルに:{% render "EcsCrmBundle:Module:checkClock" %}

したがって、次のコードを含むModuleControllerアクションで呼び出されるコントローラーがあります。checkClockAction

<?php

namespace Ecs\CrmBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Ecs\CrmBundle\Entity\TimeClock;

class ModuleController extends Controller
{
    public function checkClockAction() {
        $em = $this->getDoctrine()->getEntityManager();
        $user = $this->get('security.context')->getToken()->getUser();
        $today = time();
        $start = date('Y-m-d 00:00:00');
        $entities = $em->getRepository('EcsCrmBundle:TimeClock');
        $query = $entities->createQueryBuilder('tc')
                ->select('tc.in1, tc.out1, tc.in2, tc.out2, tc.in3, tc.out3')
                ->where('tc.noteBy = :user')
                ->andWhere('tc.daydate >= :start')
                ->setParameter('user', $user->getid())
                ->setParameter('start', $start)
                ->setMaxResults('1')
                ->getQuery();

        $entities = $query->getOneOrNullResult();
         if (empty($entities)) {
            $ents = "clocked_out";
            $this->get('session')->set('clockedin', 'clocked_out');
         } else {
            for ($i=1; $i <= 3; $i++) {
                if ($entities["in$i"] != NULL) {
                    $ents = "clocked_in";
                    $this->get('session')->set('clockedin', 'clocked_in');
                    if ($i == 1) {
                        $this->get('session')->set('nextclock', "out$i");
                    } else {
                        $x = $i+1;
                        $this->get('session')->set('nextclock', "out$x");
                    }
                    if ($entities["out$i"] != NULL) {
                        $ents = "clocked_out";
                        $this->get('session')->set('clockedin', 'clocked_out');
                        $x = $i+1;
                        $this->get('session')->set('nextclock', "in$x");
                    }
                    if ($entities["out3"] != NULL) {
                        $ents = "day_done";
                        $this->get('session')->set('clockedin', 'day_done');
                    }
                }
            }
         }
        return $this->render('EcsCrmBundle:Module:topclock.html.twig', array(
            'cstat' => $ents,
        ));
    }
}

ログイン/ログアウトボタンの1つをクリックしたときを除いて、これは正常に機能しています...

<a href="{{ path('timeclock_clockin') }}" class="clockin clocker">Clock In</a>

これは、jquery ajax を介して送信されます。

$(".clocker").click(function() {
        // lets send the ajax request to clockin..
        $.ajax({
            url: $(this).attr('href'),
            type: "POST",
            data: "url="+document.URL,
            success: function(response) {
                location.reload(true);
                return false;
            }
        });
        return false;
    })

問題は、ページが更新されても、ページを手動で更新するまでセッションが更新されないことです...私が間違ったことについてのアイデアはありますか?

4

1 に答える 1

0

location.reload(true);ブラウザのキャッシュを無視する必要があるものを使用しています...

ページにアクセスすると、アクションの 1 つが起動してセッションの状態が変化する可能性があります。

例: ページにアクセスします (アクションを X に設定します)。AJAX 要求: アクションを Y に設定します。更新: アクションを X に設定します。再度更新: アクションを Y に設定します。

デバッグの助けとして、AJAX リクエストでセッションの現在のステータスを返して、変更されたときに確認できるようにしてもらえますか?

于 2012-04-05T15:06:53.117 に答える