我正在使用瓶子框架来动态列出用于编辑任务的链接,行是逻辑上具有多个(id、任务、状态)的元组的集合,下面的代码应该给出第一个链接
http://localhost:8217/edit/1
第二个链接
http://localhost:8217/edit/2
如此反复
但所有的链接都是
http://localhost:8217/edit/5
因此我怀疑这与代码的执行顺序有关,任何提示将不胜感激
<p>The open items are as follows:</p>
<table border="1">
%for row in rows:
<tr>
%for col in row:
<td>{{col}}</td>
%end
<script language="javascript">
var number = "http://localhost:8217/edit/";
var key = {{row[0]}};
console.log(key);
</script>
<td>
<a href="" onClick="location.href=number +key;return false";>Editing</a>
</td>
</tr>
%end
</table>