我无法将 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 文件添加到数组中并尝试将它加载到我的主题中。检查网站时,我清除了所有缓存。