3
<div class="mytabelement">
     <?php     
        if($newstatus[0]['users']['status'] == 'complete'){
          echo $this -> Form -> postLink(__('update'), array(
    'controller'=>'orders','action' => 'user_satus','admin'=>false), array(
    'class' => 'uiBtn uiBtnBlue','id'=>'runloGc','title' => 'Run Logic'), 
    __('Are you sure you want update user?'));
    <?php } ?>
</div>

上記は、サイトのすべてのページに表示される要素データです。ページを更新せずに、この要素を 2 分ごとに更新する必要があります..? それは可能ですか助けてください.. !!

4

2 に答える 2

0

ここで私はあなたに例を挙げています。

html必要に応じて、または必要に応じて使用するように変更できますJson

ajax データ型に慣れていただければ幸いです。

     <script>
                $(document).ready(function(){
                    Notifications();  // this will call only one time thats first body load time 
                    setInterval("Notifications()", 2*60*1000);  // this will call each 5000ms
                    //60000
                });
                function Notifications(){
var url = "http://example.com/user/list"
                    //alert("Notify");
                    $.ajax({
                        url: url,
                        success: function(data){
                            var test=eval(data);
                            $("#dii").empty();
                            for(i=0;i<test.length;i++){

                                $("#dii").append("<b>"+test[i]['name']+"</b>");
                                $("#dii").append(":");
                                $("#dii").append(test[i]['post']);
                                $("#dii").append("<br />");

                            }
                        }
                    }); 
                }
            </script>

また、コントローラーアクションについてもロジックを設定し、データを出力するだけです。

もっとお手伝いできることがあれば教えてください

于 2013-06-06T06:26:54.397 に答える