ここでの構文の何が問題になっているのかわかりません。別の目が必要な場合があります。これにより、ユーザーが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>
私はここで何を見落としていますか?ご清聴ありがとうございました。