我正在使用节点js并表示将JSON显示为HTML表。 现在该表已显示出来,我想添加一个复选框列来跟踪用户选择了哪些行。 所以我在循环中添加了一个复选框,该复选框从JSON生成表。 但我无法使用循环变量向每个复选框添加ID。
如果有人可以帮助我解决这个问题,我将非常高兴。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/css/table.css">
</head>
<body align="left">
<form action="/results" method="post">
<div class="container">
<table class="table" align="left">
<thead>
<tr>
<th>Download </th>
<th>Title</th>
<th>time </th>
<th>seeds </th>
<th> size </th>
<th> provider </th>
<th> link </th>
</thead>
<tbody>
<% for (var i = 0; i < torrents.length; i++) { %>
<tr>
<td> <input type="checkbox" id=<%i%> > </td> <!-- the problematic line-->
<td> <%= torrents[i].title%> </td>
<td> <%= torrents[i].time%> </td>
<td> <%= torrents[i].seeds%> </td>
<td> <%= torrents[i].size%> </td>
<td> <%= torrents[i].provider%> </td>
<td> <%= torrents[i].link%> </td>
</tr>
<% }%>
</tbody>
</table>
</body>
</div>
<input type="submit" class="ghost-button" value="Download selected torrents to seedbox">
</form>
</html>
答案 0 :(得分:2)
您使用了<%'Scriptlet'标签,该标签用于控制流,无输出
应为<%=