Я пытаюсь использовать tableify в узле JS для преобразования следующего массива JSON в HTML-таблицу:
[{"ID":"1", "Name":"John"},{"ID":"2", "Name":"Mary"}] (this is a subset of the array shortened for this post. The format is the same)
И когда я бегу:
var tableify = require('tableify');
var html = tableify(recordset);
console.log(html);
Это возвращается:
<table><tbody><tr><td class="object"><td class="undefined"></td></td><td class="object"><td class="undefined"></td></td><td class="object"><td class="undefined"></td></td><td class="object"><td class="undefined"></td></td></tr></tbody></table>
Почему он не возвращает содержимое массива?