
在使用PrimeVue的DataTable组件时,开发者可能会遇到数据行显示为空白的问题。这通常不是前端组件本身的错误,而是因为从后端API获取的数据格式与DataTable期望的格式不符。
原始JSON数据(问题中提到的 "Json I get"):
[
[
32,
"DE BELLOUET Jag",
"1.3.13.3.",
"Cid polseruti sau"
],
[
15,
"NOURAUD Benjamin",
"1.3.13.3.",
"Cid polseruti sau"
]
]这种格式是一个数组,其中每个元素又是一个数组。每个内部数组包含了一系列值,但没有明确的键(key)来标识这些值的含义。
PrimeVue DataTable以及大多数前端表格组件期望的数据格式是“对象数组”(问题中提到的 "Json I need" 的修正版):
立即学习“前端免费学习笔记(深入)”;
[
{
"id":32,
"fullName":"DE BELLOUET Jag",
"acs":"1.3.13.3.",
"nom_service":"Cid polseruti sau"
},
{
"id":15,
"fullName":"NOURAUD Benjamin",
"acs":"1.3.13.3.",
"nom_service":"Cid polseruti sau"
}
]这种格式同样是一个数组,但其每个元素是一个JSON对象。每个对象内部包含键值对,其中键(如"id"、"fullName")明确标识了对应值的含义。PrimeVue DataTable的<Column field="propertyName">正是通过这些键来绑定并显示数据的。
当后端返回的数据是数组嵌套数组时,前端的DataTable无法识别field="id"、field="fullName"等属性,因为这些属性在内部数组中并不存在,导致数据行显示为空。
问题的核心在于Java后端REST服务如何将数据库查询结果序列化为JSON。当JPA查询不明确指定返回类型或使用投影时,getResultList()可能会返回List<Object[]>,而JAX-RS(如Resteasy与Jackson2)在序列化List<Object[]>时,默认会将其处理为数组的数组,而不是对象数组。
要解决此问题,我们需要修改AgentDAOImpl.java中的listAgentService方法,确保它返回List<AgentServ>,并且每个AgentServ对象都正确地填充了数据。最优雅的方式是在JPQL查询中使用构造器表达式(Constructor Expression)。
在fr.gouv.finances.douane.cotes.dao.agent.AgentDAOImpl类中,将listAgentService方法修改为使用JPQL的SELECT NEW语法。这会指示JPA直接将查询结果映射到AgentServ对象的构造函数。
// fr.gouv.finances.douane.cotes.dao.agent.AgentDAOImpl.java
import fr.gouv.finances.douane.cotes.dao.agent.AgentServ; // 确保导入 AgentServ
// ... 其他代码 ...
@SuppressWarnings("unchecked")
public List<AgentServ> listAgentService() {
// 使用JPQL的SELECT NEW语法,直接将查询结果映射到AgentServ的构造函数
// 这里的fr.gouv.finances.douane.cotes.dao.agent.AgentServ必须是完整的类名
String jpql = "SELECT NEW fr.gouv.finances.douane.cotes.dao.agent.AgentServ(" +
"a.id, " +
"(btrim(a.nom) || ' ' || btrim(a.prenom)), " + // fullName
"s.acs, " + // acs
"s.libelle) " + // nom_service
"FROM Agent a INNER JOIN Service s ON a.service = s " + // 假设a.service是Service实体
"WHERE ((a.actif = true) OR ((a.actif = false) AND (a.dateSuppression >= CURRENT_DATE)))";
// 执行查询并直接返回List<AgentServ>
List<AgentServ> agents = em.createQuery(jpql, AgentServ.class).getResultList();
return agents;
}解释:
确保AgentServ类是一个标准的Java Bean(POJO),拥有私有属性、公共的无参构造函数、以及对应的getter和setter方法。问题中提供的AgentServ类已经符合这个要求。
// fr.gouv.finances.douane.cotes.dao.agent.AgentServ.java
package fr.gouv.finances.douane.cotes.dao.agent;
public class AgentServ {
private long id;
private String fullName;
private String acs;
private String nom_service;
public AgentServ() { /* 无参构造函数 */ }
public AgentServ(long id, String fullName, String acs, String nom_service) {
this.id = id;
this.fullName = fullName;
this.acs = acs;
this.nom_service = nom_service;
}
// Getters and Setters for all fields
public long getId() { return id; }
public void setId(long id) { this.id = id; }
public String getFullName() { return fullName; }
public void setFullName(String fullName) { this.fullName = fullName; }
public String getAcs() { return acs; }
public void setAcs(String acs) { this.acs = acs; }
public String getNom_service() { return nom_service; }
public void setNom_service(String nom_service) { this.nom_service = nom_service; }
}AgentResourceRESTService中的ListAgentService方法无需修改,因为它已经正确地声明了返回类型为List<AgentServ>。一旦AgentDAOImpl中的listAgentService方法返回了正确的List<AgentServ>对象,JAX-RS(通过resteasy-jackson2-provider)将自动将其序列化为期望的JSON对象数组格式。
// fr.gouv.finances.douane.cotes.rest.agent.AgentResourceRESTService.java
// ... 其他代码 ...
@Path("/agent")
@RequestScoped
public class AgentResourceRESTService {
// ... 注入和其他方法 ...
@GET
@Path("/agentServ")
@Produces("application/json; charset=UTF-8")
public List<AgentServ> ListAgentService() {
// 这里repository.listAgentService()现在会返回List<AgentServ>
// Resteasy-Jackson2-provider会自动将其序列化为[{"id":..., "fullName":...}, ...]
return repository.listAgentService();
}
}一旦后端开始提供正确的JSON格式,前端的PrimeVue DataTable代码应该能够正常工作,无需进行任何修改。
gererPersonnes.vue中的DataTable配置:
<DataTable :value="agents" :paginator="true" :rows="10" class="tableau">
<template #empty>
Pas d'agent trouvé.
</template>
<Column field="id" :sortable="true" header="Id" headerStyle="width: 3em" bodyStyle="text-align: center"></Column>
<Column field="fullName" :sortable="true" header="Nom - Prénom" headerStyle="width: 250px"></Column>
<Column field="service.acs" :sortable="true" header="A.C.S." headerStyle="width: 150px"></Column>
<Column field="service.nom_service" :sortable="true" header="Service" headerStyle="width: 250px; text-aling: left;"></Column>
<!-- ... 其他列和操作按钮 ... -->
</DataTable>这里的field="id"、field="fullName"等属性会直接匹配后端返回JSON对象中的键,从而正确地显示数据。
解决PrimeVue DataTable不显示数据的问题,关键在于确保后端REST服务提供符合前端期望的JSON格式。通过在Java后端使用JPQL的SELECT NEW构造器表达式,我们可以精确地控制数据库查询结果如何映射到DTO对象,进而被JAX-RS序列化为标准的JSON对象数组。一旦后端数据格式正确,前端PrimeVue组件将能够无缝地渲染数据,提供用户友好的界面。
以上就是如何正确构建JSON数据以在PrimeVue DataTable中显示的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号