我试图加载一个js文件在odoo 16根据odoo 16文件,但我不能,它不加载我的js文件,尽管它不给予任何错误,我想知道是否有人可以帮助我加载一个js文件在odoo
清单.py
# -*- coding: utf-8 -*-
{
"name": "Test Module",
'version': '1.0',
'category': 'Theme',
"depends": ['base','website','website_sale_wishlist' ],
'assets': {
'web.assets_frontend': [
'TestModule/static/src/js/content/testfile.js'
],
},
'installable': True,
'auto_install': True
}
我的Js文件
odoo.define('TestModule.testfile', function (require) {
'use strict';
var publicWidget = require('web.public.widget');
publicWidget.registry.testWebsite = publicWidget.Widget.extend({
selector:'.o_wsale_products_main_row',
init() {
console.log('=============');
},
})
});
这些代码是用于网站上的/商店页面,当您在浏览器中浏览/商店页面时,它将加载它
我想在odoo 16中加载一个js文件
1条答案
按热度按时间piwo6bdm1#
你已经在清单中将'category'设置为Website/Website',它将得到修复
这是因为vivek. aktivsoftware.com