easy UI datagrid 怎么接收后台的JSON 数据并显示

easy UI datagrid 怎么接收后台的JSON 数据并显示,第1张

点击button调用getAll方法从数据库取数据

jsp代码:

<input type="text" class="txt">

<button onclick="getAll()">查询</button><br/>

<table id="dg-order" ></table>

js代码:

function getAll(){

var text = $('.txt').val()

$.ajax({

url:basePath+"list/all",

data:{

userid:text,

},

success:function(result){

$('#dg-order').datagrid("loadData",result)

}

})

}

result为返回的json字符串[{"address":"将军路","orderItemList":[{"id":180,"num":2,"price":40.0}],"status":0,"userId":16}]

//window.location.href = "/Account/ReCmpInfo"

$("<a>").attr("href", $(this).data("url")).hide().appendTo("body")[0].click()

可以试试这个写法 url 是你的链接地址


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存