如何将多个json数据组合成jquery数据表中的单列?
我从后端收到此 JSON 响应。
{
"data": [
{
"id": 6,
"firstname": "fname",
"middlename": "mname",
"lastname": "lname",
},
...
]
}
使用 jquery 数据表使用 ajax 请求从 JSON 响应创建表。
$number = 1;
$("#people-table").DataTable({
ajax: {
url: window.location.href + '/fetchdata',
method: "GET",
dataType: "json",
dataSrc: "data"
},
columns: [
{
render: function () {
return $number++;
}
},
{ data: 'firstname' },
{ data: 'middlename' },
{ data: 'lastname' },
]
});
<table>
<thead>
<tr>
<th>No.</th>
<th>Profile</th>
<th>Firstname</th>
<th>Middlename</th>
<th>Lastname</th>
</tr>
</thead>
<tbody>
{{-- data --}}
</tbody>
</table>
我在 html 表中获得了此代码的正确输出,但现在我想使用 jquery 数据表将所有三个字段名字、中间名和姓氏合并到一个名为 fullname 的字段中
I am getting this JSON response from to back-end.
{
"data": [
{
"id": 6,
"firstname": "fname",
"middlename": "mname",
"lastname": "lname",
},
...
]
}
Creating table from the JSON response using jquery datatable using ajax request.
$number = 1;
$("#people-table").DataTable({
ajax: {
url: window.location.href + '/fetchdata',
method: "GET",
dataType: "json",
dataSrc: "data"
},
columns: [
{
render: function () {
return $number++;
}
},
{ data: 'firstname' },
{ data: 'middlename' },
{ data: 'lastname' },
]
});
<table>
<thead>
<tr>
<th>No.</th>
<th>Profile</th>
<th>Firstname</th>
<th>Middlename</th>
<th>Lastname</th>
</tr>
</thead>
<tbody>
{{-- data --}}
</tbody>
</table>
I am getting proper output for this code in the html table, but now I want to combine all three field firstname, middlename, and lastname into one field called fullname using jquery datatable
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以做这样的事情而不是数据表。这是一个纯 JavaScript 的例子。
HTML
Javascript
确保在需要显示时调用您的函数。
You can do something like this instead of DataTables. This is a pure javascript example.
HTML
Javascript
Make sure to call your function whenever you need it to display.