dpxw17759 2014-01-06 16:40
浏览 405
已采纳

从客户端获取Redis的新值

I'm using PHP with PHPRedis to connect to Redis.

This works fine

            $redis = new Redis();
            $redis->connect('localhost', 6379);
            $total = $redis->get('total');

Let's say $total is now 1. I then use the Redis client to increment the key 'total' so that it has a value of 2.

But now I want a user to be able to see the new value when they click a button

        <script type="text/javascript">
            window.onload=function() {
                $('#newTotal').click(function (event) {
                        <?php
                            $redis = new Redis();
                            $redis->connect('localhost', 6379);
                            $total = $redis->get('total');
                        ?>
                        $("#updated").html("Total is now <?php echo $total; ?>");

                });
            }
        </script>

But this does not give the new value.

How can I connect to get the updated values?

  • 写回答

1条回答 默认 最新

  • dongtiao2066 2014-01-06 16:43
    关注

    You have to understand, PHP is running on the server-side and jQuery is on the client. That being said you'll need to use AJAX. The following would be one quick way to do it:

    $('#newTotal').click(function (event) {
        $.ajax({
            url: 'yourPHPfile.php',
            type: 'GET',
            success: function(data) {
                $("#updated").html("Total is now " + data);
            }
        });
    });
    

    And in the yourPHPfile

     $redis = new Redis();
     $redis->connect('localhost', 6379);
     $total = $redis->get('total');
    
     echo $total; //this is seen as the "data" parameter in the AJAX success
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料