我不明白我的语法有什么问题,也许我需要另一双眼睛,这应该会导致用户单击 twitter 图像以弹出一个引导模式,但我收到了这个错误-
wrong number of arguments (3 for 2)
link_to
与image_tag
- _
<li><%= link_to image_tag "/assets/twitter.png", "#myModal", :data => { :toggle =>"modal" } %></li>
用于 html 的模态
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Hey!</h3>
</div>
<div class="modal-body">
<p>6 modals?</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
我在这里俯瞰什么?感谢您的关注和查看。