cakephp 中烘焙视图的问题
我创建了一个自定义视图模板(请参阅下面的链接),我用它来在 cakephp 中烘焙我的视图。
http://book.cakephp.org/ view/789/Modify-default-HTML-productd-by-baked-templates
一切正常,但如果我尝试在视图模板中合并一个元素,例如
<?php echo $this->element('menu'); ?>
在烘焙视图时出现错误。如果我注释掉这一行,烘焙效果就很好。
这不是一个大问题,因为我可以轻松地注释掉该行并在烘焙后编辑视图 - 我只是好奇为什么会发生这种情况。
编辑
我在烘焙中遇到的错误类似于“注意:未定义的属性:C:\xampp\xampplite\htdocs\company\app\vendors\shells\templates\views\ 中的 ViewTask::$element index.ctp on line 87 ('menu')" - 我想这一定是bake试图解释$this->element('menu')而不是仅仅回显它的问题。
I've created a custom view template (see link below), which I'm using to bake my views in cakephp.
http://book.cakephp.org/view/789/Modify-default-HTML-produced-by-baked-templates
Everything works fine, but if I try to incorporate an element in my view template, such as
<?php echo $this->element('menu'); ?>
I get an error while baking the view. If I comment out this line, baking works fine.
This is not a huge problem as I can easily comment out the line and edit the views after baking them - I'm just curious why this happens.
EDIT
The error I get in bake is something like "Notice: Undefined property: ViewTask::$element in C:\xampp\xampplite\htdocs\company\app\vendors\shells\templates\views\index.ctp on line 87 ('menu')" - I guess it must be a problem with bake trying to interpret $this->element('menu') rather than just echoing it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你说得完全正确:
所以回应它,例如
You're exactly right:
So echo it, e.g.