怎么把json返回的数据显示到html页面上?

怎么把json返回的数据显示到html页面上?,第1张

需要准备的材料分别是:电脑、html编辑器、浏览器。

1、首先,打开html编辑器,新建一个html文件,例如:index.html,并引入jquery.js。

2、在index.html的<script>标签中,输入js代码:

$.get('请求地址', function(respond) {

document.body.innerText = respond

})

3、从浏览器运行index.html页面,此时接口返回的json数据被完整显示到html页面上了。

1.首先需要用script引入jquery和easyui文件。如图所示:

2.html页面设置如下:

data-options里面设置的属性可根据需要自己定义,是否单选,是否设置分页等等。

3.引入easyui的css样式。

4.用ajax方法加载出数据。

注意:在成功以后的回调函数中给页面id为dg的盒子绑定数据。

5.配置datagrid方法:

function fLoadTable(){

$('#dg').datagrid({

title: '用户列表',

width: 700,

height: 300,

fitColumns: true,

//对应json数据中的每一列

columns : [ [ {

field : 'id', //每一列的名字

width : '100',

title:'ID',

checkbox:true

},{

field : 'flag',

title : '职位',

width : '100',

align : 'center'

}, {

field : 'userName',

title : '姓名',

width : '100',

align : 'center',

},{

field : 'gender',

title : '性别',

width : '100',

align : 'center',

},{

field : 'email',

title : '邮箱',

width : '100',

align : 'center',

}

] ],

idField:'id',

loadMsg:'Processing, please wait …',

pagination:true 

})

}

6.最后调用这两个函数。

7.效果截图

下面是我的json数据:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9633404.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存