如何通过表中的超链接在 Django 中传递数据
我想在表格中显示对象列表,做表格没有问题。我想在模板中一列显示的数据中放置链接。问题是,如何将该链接中的数据传递到视图?例如在struts2和JSP中,我曾经这样做(带参数):
<td class="nowrap">
<s:url id="unitList" action="doSubject!ShowSubjectUnits">
<s:param name="subjectID" value="%{id}" />
</s:url>
<s:a href="%{unitList}"><s:text name="%{unidades.size()}"/></s:a>
</td>
I want to display a list of objects in a table, no problem doing the table. I want to put links in the data displayed of one column in the template. The question is, how can I pass data in that link to the view?. For example in struts2 and JSPs, I used to do it this way (with param):
<td class="nowrap">
<s:url id="unitList" action="doSubject!ShowSubjectUnits">
<s:param name="subjectID" value="%{id}" />
</s:url>
<s:a href="%{unitList}"><s:text name="%{unidades.size()}"/></s:a>
</td>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许你可以简单地将 GET 参数添加到你的 url 中:
更好的是 漂亮的 url 设计 带参数:
Maybe you can simply add GET parameters to your url:
Even better would be a nice url design with arguments: