thinkphp中frameset不显示问题,求教

时间:2022-09-24 15:59:36
请问在thinkphp中frameset中各子框架的页面为什么无法显示,可以肯定是子框架src路径都是存在的,我看了thinkphp中example中rbac的框架是可以的,对比了下,也没有发现什么错误的地方,请知道的同志指导一下,多谢

11 个解决方案

#1


补充一下:把子框架的src都换成如http://www.baidu.com这样的url都无法显示,所以可能不是src的问,不知道哪里有猫腻,求指导,在线等

#2


各子框架的页面无法显示 是什么意思?
查看网页源代码时都看到了什么?

#3


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<frameset rows="60,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="/admin.php/Public/top" name="topFrame" scrolling="no">
<frameset cols="180,*" name="btFrame" frameborder="NO" border="0" framespacing="0"><frame src="/admin.php/Public/menu" noresize name="menu" scrolling="yes">
<frame src="http://www.baidu.com" noresize name="main" scrolling="yes">
</frameset>
</frameset>
</html>

这是查看源文件得到的,但是网页一片空白,什么都看不到

#4


问题同上。之前有碰到过,在2.1下 发现关闭 debug模式 后可以正常显示了。
现在在thinkphp3.0 下面,debug也关闭了 但页面还是空白。单独访问top页面是可以的
就是访问有frameset的index首页不行

#5


没人解决吗
????

#6


你是在写cms吧 前段时间我也遇到了 类似的问题     我重写一遍就可以了 

#7


没出现过,看一下文件页面的编码是否一致!

#8


我也遇到了,这是怎么解决的啊
求解
本地测试好的
传到服务器就不可见

#9


我遇到的是这样:
界面没显示:网页代码可以看到 thinkphp中frameset不显示问题,求教


在console 中说无法加载 thinkphp中frameset不显示问题,求教


谁可以说说为什么不加载(无法获取资源)么?  

#10


错了 ,第一个图是: thinkphp中frameset不显示问题,求教

#11


我的问题解决了,如果iframe 的src 是地址 ,不是网址的话,是不会显示的 ,这点很容易忘了,不要这样:

><iframe id="body___Frame" src="F:\scores/ThinkPHP/Library/Vendor/FCK/editor/fckeditor.html?InstanceName=body&amp;Toolbar=Default" width="500" height="350" frameborder="0" scrolling="no"></iframe>


而是这样:

><iframe id="body___Frame" src="http://localhost:8080/scores/ThinkPHP/Library/Vendor/FCK/editor/fckeditor.html?InstanceName=body&amp;Toolbar=Default" width="500" height="350" frameborder="0" scrolling="no"></iframe>

地址和网址的区别 别的没什么

#1


补充一下:把子框架的src都换成如http://www.baidu.com这样的url都无法显示,所以可能不是src的问,不知道哪里有猫腻,求指导,在线等

#2


各子框架的页面无法显示 是什么意思?
查看网页源代码时都看到了什么?

#3


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<frameset rows="60,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="/admin.php/Public/top" name="topFrame" scrolling="no">
<frameset cols="180,*" name="btFrame" frameborder="NO" border="0" framespacing="0"><frame src="/admin.php/Public/menu" noresize name="menu" scrolling="yes">
<frame src="http://www.baidu.com" noresize name="main" scrolling="yes">
</frameset>
</frameset>
</html>

这是查看源文件得到的,但是网页一片空白,什么都看不到

#4


问题同上。之前有碰到过,在2.1下 发现关闭 debug模式 后可以正常显示了。
现在在thinkphp3.0 下面,debug也关闭了 但页面还是空白。单独访问top页面是可以的
就是访问有frameset的index首页不行

#5


没人解决吗
????

#6


你是在写cms吧 前段时间我也遇到了 类似的问题     我重写一遍就可以了 

#7


没出现过,看一下文件页面的编码是否一致!

#8


我也遇到了,这是怎么解决的啊
求解
本地测试好的
传到服务器就不可见

#9


我遇到的是这样:
界面没显示:网页代码可以看到 thinkphp中frameset不显示问题,求教


在console 中说无法加载 thinkphp中frameset不显示问题,求教


谁可以说说为什么不加载(无法获取资源)么?  

#10


错了 ,第一个图是: thinkphp中frameset不显示问题,求教

#11


我的问题解决了,如果iframe 的src 是地址 ,不是网址的话,是不会显示的 ,这点很容易忘了,不要这样:

><iframe id="body___Frame" src="F:\scores/ThinkPHP/Library/Vendor/FCK/editor/fckeditor.html?InstanceName=body&amp;Toolbar=Default" width="500" height="350" frameborder="0" scrolling="no"></iframe>


而是这样:

><iframe id="body___Frame" src="http://localhost:8080/scores/ThinkPHP/Library/Vendor/FCK/editor/fckeditor.html?InstanceName=body&amp;Toolbar=Default" width="500" height="350" frameborder="0" scrolling="no"></iframe>

地址和网址的区别 别的没什么