在codeignitor 4中使用 AJAX 显示Json数据

3zwjbxry  于 2023-02-14  发布在  其他
关注(0)|答案(1)|浏览(101)

我的JSON数据在浏览器控制台中是可用的,但是我不能在模板中显示数据。

<script type="text/javascript">
    $(document).ready(function () {
    $.ajax({
        url:  '<?php echo_uri("clients/session_details") ?>',
        type: 'GET',        
        dataType: 'json',
        success: function(response) {
            var data = JSON.parse(response);
           $("#result").html(data[0].rx-byte);
       }
    });
    });
</script>
oyxsuwqo

oyxsuwqo1#

根据您提供的JSON数据,您似乎试图在HTML模板中显示rx-byte值。下面是一个代码示例:

$(document).ready(function () {
        $.ajax({
            url: '<?php echo_uri("clients/session_details") ?>',
            type: 'GET',
            dataType: 'json',
            success: function (response) {
                $("#result").html(response[0]["rx-byte"]);
            }
        });
    });

相关问题