我尝试使用Bootstrap 5从链接中打开Modal,然后通过将请求发送到服务器上来动态加载内容(modal的主体),然后服务器将返回内容(remote_modal_content),以神奇地加载到现在可见的Modal主体中。
使用Rails 7 / Turboframes。
我的链接:
<a data-turbo-frame="remote_modal_content" data-bs-toggle="modal" data-bs-target="#remote_modal_frame" class="btn btn-outline-primary" href="/lists/3/issue_items/new">+</a>
字符串
要打开的remote_modal_frame:
<div class="modal fade" id="remote_modal_frame"
tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<%= turbo_frame_tag "remote_modal_content" %>
</div>
</div>
型
点击链接会打开Modal,但对href的请求不会发送到服务器,因此魔术永远不会发生(模态内容没有填充)。
我正在使用Bootstrap 4(使用JavaScript而不是turbo)做类似的事情,所以这似乎是Bootstrap 5中的新行为。
我很高兴有人能为我提供任何帮助。
谢了,马克
2条答案
按热度按时间sqxo8psd1#
我在hotwired社区论坛上解决了这个问题:https://discuss.hotwired.dev/t/dynamically-load-content-into-bootstrap-modal-using-turbo-stimulus/4607/2
csbfibhn2#
如果你不想使用刺激,你可以加载你的数据与涡轮增压,然后模拟点击特殊的隐藏链接打开模态。
这是一个变通的解决方案,但它很简单,而且很有效。
字符串
在show.html.erb中:
型