如何在CakePHP插件中包含一个js库

时间:2014-10-07 08:05:30

标签: cakephp plugins include

谁能告诉我如何在CakePHP插件中包含js库? 在根app /文件夹中,我可以在Config / assets.php中进行,但是我将它包含在插件中?

我想要包含的库位于/ app / Plugin / MyModule / webtoor / js / lib /

1 个答案:

答案 0 :(得分:1)

您可以将块用于脚本和CSS文件。更多信息:http://book.cakephp.org/2.0/en/views.html#using-blocks-for-script-and-css-files

Short answer:
// in your view
$this->Html->script('/pluginName/js/lib/whatever', array('block' => 'scriptBottom'));

// in your layout
echo $this->fetch('scriptBottom');

这应该可以解决问题。