
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
node-sequelize-datatable
Advanced tools
This Package is currently using following dependencies.
* [Sequelize] - "^5.12.3"
* [Lodash] - "^4.17.15"
Example request body
{
"draw": 1,
"columns": [
{
"data": "id",
"name": "",
"searchable": true,
"orderable": true,
"search": {
"value": "",
"regex": false
}
},
{
"data": "category",
"name": "",
"searchable": true,
"orderable": true,
"search": {
"value": "",
"regex": false
}
}
],
"order": [
{
"column": 0,
"dir": "asc"
}
],
"start": 0,
"length": 2,
"search": {
"value": "",
"regex": false
}
}
Example code for category model [all columns data(id, category) should be same as database table columns]
const { Category } = require('../../models'); // your model
const sequelizeDatatable = require('node-sequelize-datatable');
exports.categoryTable = async function(req, res) {
var datatableObj = await sequelizeDatatable(req.body);
var count = await Category.count();
var categories = await Category.findAndCountAll(datatableObj);
return res.json({
"draw": req.body.draw,
"recordsFiltered": categories.count,
"recordsTotal": count,
"data": categories.rows
});
}
Angular Code
import { Component, OnInit } from '@angular/core';
import { BlogService } from '../internal-blog/blog.service';
@Component({
selector: 'app-category',
templateUrl: './category.component.html',
styleUrls: ['./category.component.css']
})
export class CategoryComponent implements OnInit {
dtOptions: DataTables.Settings = {};
categories = [];
constructor(
private blogService: BlogService
) { }
ngOnInit(): void {
const that = this;
this.dtOptions = {
pagingType: 'full_numbers',
pageLength: 2,
serverSide: true,
processing: true,
ajax: (dataTablesParameters: any, callback) => {
that.blogService.categoryTable(dataTablesParameters).subscribe(resp => {
that.categories = resp.data;
callback({
recordsTotal: resp.recordsTotal,
recordsFiltered: resp.recordsFiltered,
data: []
});
console.log(resp);
});
},
columns: [
{
data: 'id'
},
{
data: 'category'
}
]
};
}
}
<section class="dashboard-wrap mtb-40">
<div class="container">
<div class="body-content">
<div class="row">
<div class="col-md-3">
<app-nav-bar></app-nav-bar>
</div>
<div class="col-md-9">
<div class="dash-right">
<table datatable [dtOptions]="dtOptions" class="row-border hover">
<thead>
<tr>
<th>ID</th>
<th>Category</th>
</tr>
</thead>
<tbody *ngIf="categories?.length != 0">
<tr *ngFor="let category of categories">
<td>{{ category.id }}</td>
<td>{{ category.category }}</td>
</tr>
</tbody>
<tbody *ngIf="categories?.length == 0">
<tr>
<td colspan="3" class="no-data-available">No data!</td>
</tr>
<tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
FAQs
sequelize server side datatable handler
The npm package node-sequelize-datatable receives a total of 0 weekly downloads. As such, node-sequelize-datatable popularity was classified as not popular.
We found that node-sequelize-datatable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.