我如何在cakephp中使用框架?
这是我的代码,但如果我运行我的代码,它不起作用
,没有任何内容可显示。 我认为问题出在 src 上。或者我需要改变布局。 有没有人有经验啊...
<frameset rows="127,*,11" frameborder="no" border="0" framespacing="0">
<frame src="top" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
<frame src="center" name="mainFrame" id="mainFrame" />
<frame src="down" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" />
This is my code but it doesn't work
if I run my code,It nothing to be display.
I think The problem is the src. or I need to change the layout .
Does somebody has experience...
<frameset rows="127,*,11" frameborder="no" border="0" framespacing="0">
<frame src="top" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
<frame src="center" name="mainFrame" id="mainFrame" />
<frame src="down" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尚未设置自定义路由,则需要将框架 src 更改为 /controller_name/action ...在本例中为 /controller_name/top 等。
If you haven't setup custom routing, you'll need to change the frame src to /controller_name/action ... In this case, /controller_name/top and so on.