如题,query查询出结果,想直观看出结果的数量,怎么办?
谢谢!
Dataview可以用CSS片段:
/* Dataview table row counter */
.table-view-table {
counter-reset: section;
}
.table-view-table > tbody > tr > td:first-child::before {
counter-increment: section;
content: counter(section) ". ";
}
這是table每一列的序號,似乎不是需要的回答…
感谢回答,感觉有点复杂。我试试。