在一个随机实验中,我想通过iframe显示我在另一台服务器上运行的Ruby应用程序。
<html>
<body>
<iframe src="http://192.155.83.120:5000/r/2" width="800px" height="800px"></iframe>
</body>
</html>
没有运气,空白。
ruby应用程序的代码中是否存在阻止它在iframe中正确显示的内容?
答案 0 :(得分:1)
iframe将仅支持文件名的确切路径...例如
<iframe src="http://192.155.83.120:5000/r/2/index.html" width="800px" height="800px"></iframe>