答案 0 :(得分:0)
迭代表似乎没用,但在这里。注意我使用上面表的类名来查找每个表。如果您的示例为每个表都有不同的类,则无效。
let people = await getUsersWithNoPersonsPromise()
people = people.map(p => new Person(p))
如果您想使用表格中的行和单元格,可能需要引用此solution。
答案 1 :(得分:0)
使用querySelectorAll(可以直接迭代,与HTMLCollection方法不同):
document.querySelectorAll('table.table').forEach(table => {
// do something with each table
});