动态href从mysql数据库更改源
<table>
<tr th:each="c : ${contents}">
<td><a href="#" th:href="@{c.content}" onclick="loadSWF(this.href, 'flashcontent');
return false;" >Click here </a></td>
</tr>
</table>
上面的代码是百里香弹簧的例子............
我想在每次迭代时加载.swf文件,
c.content 每次运行都会给出.swf文件的位置.. !! Chrome控制台给我500错误 GET localhost:8080 / learnware / student / c.content 500(内部服务器错误)
答案 0 :(得分:2)
好像你的变量@{c.content}
没有被解析。我不熟悉Thymeleaf,但维基百科似乎建议您使用${c.content}
代替?
<强>更新强>
我们发现在href中使用变量的实际语法是@{${c.content}}