我的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>
1条答案
按热度按时间oyxsuwqo1#
根据您提供的JSON数据,您似乎试图在HTML模板中显示rx-byte值。下面是一个代码示例: