gpt4 book ai didi

java - 如何将 JSON 数组从 Struts 2 操作类传递到 jQuery?

转载 作者:太空宇宙 更新时间:2023-11-04 14:19:45 24 4
gpt4 key购买 nike

我使用一个操作文件创建一个 Java Web 应用程序,该文件将数据从数据库生成到 JSON 数组。现在,我想要将此 JSON 数组传递给 jQuery?这怎么可能?

仅供引用。我应用了 Struts 2、Spring 和 Hibernate 框架。我没有在这个应用程序中使用 PHP。

更新:

这是我的 Struts 2 操作方法:

public static String jsonData = null;

public String generateJson() throws Exception
{
JSONObject json = null;
JSONArray jsonArray = new JSONArray();

this.records = this.recordManager.getAllRecords();

for (RecordEntity record : records)
{
json = new JSONObject();

json.put("id", record.getId());
json.put("firstname", record.getFirstName());
json.put("lastname", record.getLastName());
json.put("due", record.getDue());
json.put("email", record.getEmail());
json.put("website", record.getWebsite());
jsonArray.put(json);
}

System.out.println(jsonArray.toString());

jsonData = jsonArray.toString(); // jsonData will be passed to jQuery
return SUCCESS;
}

这是我的 jQuery。我正在使用 BootstrapTable,所以这是结构,我希望将 jsonData 的值传递给这个 jQuery:

$('#record').bootstrapTable({
method : 'get',
data: jQuery.parseJSON(VALUE_OF_jsonData_HERE),
cache : ...
...
...
});

最佳答案

使用Ajax会对您有所帮助,

引用this要开始使用,还请先阅读 Ajax 以了解背景知识

关于java - 如何将 JSON 数组从 Struts 2 操作类传递到 jQuery?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27333173/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com