2

我无法将 javascript 文件添加到我的第一个 Shopware5 主题。我尝试了其中一篇在线文章中给出的以下方法。 https://developers.shopware.com/designers-guide/theme-startup-guide/ 我将我的js文件添加到Theme.php文件的数组中,并将javascript文件上传到'frontend/_public/src/js'

/** @var array Defines the files which should be compiled by the
javascript compressor */
protected $javascript = array(
'src/js/jquery.my-plugin.js'
);

然而,上面的数组在我的 Theme.php 文件中不可用,但我将我的 js 文件添加到数组中并尝试将它加载到我的主题中。检查网站时,我清除了所有缓存。

4

1 回答 1

3

您必须清除所有缓存并重新编译主题。请记住,您必须将 js 放入frontend/_public.

你的 js 文件的完整路径应该是themes/YourTheme/frontend/_public/src/js/jquery.my-plugin.js.

于 2016-02-10T17:50:10.667 回答