Update README.md

This commit is contained in:
Saúl Ortega 2018-02-23 10:05:38 -05:00 committed by GitHub
parent 8098e07b65
commit 7cc2772f44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,2 +1,36 @@
# datatables
Parser for Datatables
# Usage
filter, err = datatables.Parse(r)
if err != nil {
//Handle error
}
# Struct
type Filter struct {
Draw int
Start int
Length int
Order []Order
Columns []Column
SearchValue string
SearchRegex bool
}
type Column struct {
Data string
Name string
Index int
Orderable bool
Searchable bool
SearchValue string
SearchRegex bool
}
type Order struct {
Column Column
Dir string
}