Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一个随机实验中,我想通过 iframe 显示我在另一台服务器上运行的 Ruby 应用程序。
<html> <body> <iframe src="http://192.155.83.120:5000/r/2" width="800px" height="800px"></iframe> </body> </html>
没有运气,变成空白。
ruby 应用程序的代码中是否存在阻止它在 iframe 中正确显示的内容?
iframe 将仅支持文件名的确切路径......比如
<iframe src="http://192.155.83.120:5000/r/2/index.html" width="800px" height="800px"></iframe>