谁能告诉我如何在CakePHP插件中包含js库? 在根app /文件夹中,我可以在Config / assets.php中进行,但是我将它包含在插件中?
我想要包含的库位于/ app / Plugin / MyModule / webtoor / js / lib /
答案 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');
这应该可以解决问题。