1

我需要将图标添加到树视图中的按钮

<button name="gen_link" type="object" icon="/custom_module/static/src/img/image.png" string="MyButton"/>

但是当我在浏览器中检查元素时,它向我展示了

<button type="button" class="" title="MyButton">
    <img alt="MyButton" src="http://localhost:8000/web/static/src/img/icons//custom_module/static/src/img/image.png.png">
</button>

默认情况下,它总是采用默认路径,我无法为图标提供自定义路径。

任何建议。. .

4

1 回答 1

0

您可以使用/..向上移动/web/static/src/img/icons//目录。

像这样插入您的按钮(经过测试):

<button name="gen_link" 
        type="object" 
        icon="/../../../../../../custom_module/static/src/img/image"/>
于 2016-08-17T09:02:30.993 回答