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.
我想在所有页面中插入一个 JavaScript 块,虽然最好的方法是在 beforeFilter 函数中,因为它一直被执行,它将自动包含在所有模板的 $scripts_for_layout 中。
有没有更好的办法?
为什么不把它放在布局文件中?
<head> .... <?php echo $this->Html->script('my_js_file'); ?> ... </head>
顺便说一句,Html它是一个助手,所以它不应该在控制器中使用。
Html