我在尝试将 Paella Player 与 Apostrophe-CMS 集成时遇到问题
I have a problem trying to integrate Paella Player with Apostrophe-CMS
尝试在 Apostrophe 中实现 Paella Player,我发现将资产应用到我的项目时出错。
失败的Javascript文件是jquery.js。
https://github.com/polimediaupv/paella/tree/develop/javascript
这是我的错误。
Uncaught TypeError: $.cookie is not a function
at always.js:140
at Function.<anonymous> (jquery.js:4)
at Function.each (jquery.js:2)
at g (jquery.js:4)
at wb (jquery.js:4)
at Function.ajax (jquery.js:4)
at Function.n.(anonymous function) [as post] (http://localhost:3000/modules/paella-player-widgets/js/jquery.js:4:12281)
at Object.self.getTemplates (user.js:94)
at getTemplates (user.js:6)
at async.js:718
最后就是推送js资源的代码了
module.exports = {
extend: 'apostrophe-widgets',
label: 'Paella player',
construct: function(self, options) {
self.pushAsset('script', 'swfobject');
self.pushAsset('script', 'traceur-compiler');
self.pushAsset('script', 'base');
self.pushAsset('script', 'jquery');
self.pushAsset('script', 'lunr.min');
self.pushAsset('script', 'require');
self.pushAsset('script', 'paella_player');
}
};
鉴于撇号 CMS 已经包含 jQuery
和 jquery-cookie
,除非您使用 apostrophe-lean-frontend
模块,否则问题可能是您再次包含 jQuery 作为模块中的一项资产和 jQuery 的新声明覆盖了包含 cookie 插件的原始声明,如 here.
所述
我找到了解决方案,我不必应用 Paella 的 JQuery 文件,因为 Apostrophe 提供给我们的 JQuery 文件就足够了。
尝试在 Apostrophe 中实现 Paella Player,我发现将资产应用到我的项目时出错。
失败的Javascript文件是jquery.js。
https://github.com/polimediaupv/paella/tree/develop/javascript
这是我的错误。
Uncaught TypeError: $.cookie is not a function
at always.js:140
at Function.<anonymous> (jquery.js:4)
at Function.each (jquery.js:2)
at g (jquery.js:4)
at wb (jquery.js:4)
at Function.ajax (jquery.js:4)
at Function.n.(anonymous function) [as post] (http://localhost:3000/modules/paella-player-widgets/js/jquery.js:4:12281)
at Object.self.getTemplates (user.js:94)
at getTemplates (user.js:6)
at async.js:718
最后就是推送js资源的代码了
module.exports = {
extend: 'apostrophe-widgets',
label: 'Paella player',
construct: function(self, options) {
self.pushAsset('script', 'swfobject');
self.pushAsset('script', 'traceur-compiler');
self.pushAsset('script', 'base');
self.pushAsset('script', 'jquery');
self.pushAsset('script', 'lunr.min');
self.pushAsset('script', 'require');
self.pushAsset('script', 'paella_player');
}
};
鉴于撇号 CMS 已经包含 jQuery
和 jquery-cookie
,除非您使用 apostrophe-lean-frontend
模块,否则问题可能是您再次包含 jQuery 作为模块中的一项资产和 jQuery 的新声明覆盖了包含 cookie 插件的原始声明,如 here.
我找到了解决方案,我不必应用 Paella 的 JQuery 文件,因为 Apostrophe 提供给我们的 JQuery 文件就足够了。