我对Django和Bootstrap都很陌生。我目前正在尝试在Django模板的for循环中获得一个bootstrap模态窗口,它将显示来自模型的一些数据。
因此,我创建了一个for循环,它覆盖了按钮创建和模态窗口,并迭代了模型中包含的数据,因此它应该创建与模型中的条目一样多的按钮和相应的模态窗口。
但是,当我单击通过for循环创建的任何按钮时,模态窗口总是显示第一个条目,并且永远不会改变。
我曾尝试找出答案,主要是看了以下几个问题:
Passing value to Bootstrap modal in Django
Twitter bootstrap remote modal shows same content everytime
当我创建与唯一ID相关的不同模态和按钮时,这在循环外工作得很好,但在我的情况下却不能工作。
我希望能说得够精确。
谢谢你的帮助。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Remote file for Bootstrap Modal</title>
<!--CSS-->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!--jquery-->
<script src="http://code.jquery.com/jquery.min.js"></script>
<!--JS-->
<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
</head>
<body>
<div class="row">
{% for name in activities %}
<div class="col-md-3">
<div class="thumbnail">
<img src="#" >
</div>
<p>Location: {{name.aregion}}</p>
<p>
<!-- Button trigger modal -->
<button class="btn btn-primary btn-xs" data-toggle="modal" data-target="#myModal">
Read More
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">{{name.aname}}, {{name.aregion}}, {{name.acountry}}</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save</button>
</div>
</div>
</div>
</div>
</p>
</div>
{% endfor %}
</div>
</body>
</html>
(“按钮触发模态”和“模态”的代码都来自bootstrap.com所以应该没错)
1条答案
按热度按时间8yoxcaq71#
好的,我已经明白哪里出了问题。我试图使用的ID是文本,而不是数字,我想,最后这么简单。我终于使用了我的模型的ID字段,它工作得很完美。感谢你,rajasimon,给了正确的方向!