dora1989 2015-10-15 00:12
浏览 41
已采纳

如何使用jQuery调用php函数从MYSQL获取更新数据

So I have a number in the MYSQL table which is displayed on the screen using the function:

function getWinNumber($db) {

    $user = getProfileInfoFor($_SESSION['id'], $db); 

    $winNumber = $user->number;

    return $winNumber;
}

Then after some user actions that value changes in the DB and I want to update it in front-end when they close a foundation modal:

$(document).on('close.fndtn.reveal', '#ex6-4', function () {

        $('.number').html("<?php echo getWinNumber($db);?>");

    });

The problem is that even though the code works, and I can clearly see in the DB that the value has changed before I close the modal, the value being pulled is still the old one. Why is that?

If I put anything else in there like:

$(document).on('close.fndtn.reveal', '#ex6-4', function () {

        $('.number').html("test");

    });

it works. It updates when I close the modal.

  • 写回答

1条回答 默认 最新

  • dsdapobp26141 2015-10-15 00:33
    关注

    I ended up doing it with AJAX like this and it worked:

    $(document).on('close.fndtn.reveal', '#ex6-4', function () {
    
             $.ajax({ url: 'include/update.php',
                 data: {action: 'update'},
                 type: 'post',
                 success: function(output) {
    
                          $('.encrypted').html(output);
                      }
            });  
        });
    

    and for the PHP:

    if(isset($_POST['action']) && !empty($_POST['action'])) {
    
        $action = $_POST['action'];
        if ($action == 'update') {
    
            echo getWinNumber($db);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图