Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
odoo 网站模块在哪里保存内容?喜欢菜单、横幅图像和其他文本和 html?我实际上想看看大型菜单的菜单在数据库中的存储位置(表名)它们如何在网站上呈现。观察到这一点,我想在渲染这些菜单项时添加一些 html。
odoo 将某些内容呈现为 html 表单的方式是您创建一个 xml 表单,然后将其存储在 ir_ui_view 中。当某些路由加载并需要视图时,在所有视图继承之后,odoo 会获取最终的 xml 表单,然后创建相应的 html 视图。