1

我在 Cent OS Final 6.4 和 Python 2.6.6 i=with static ip 中安装了 OpenERP 7

我使用互联网从外部网络访问它运行良好

但是我在网络内访问它会引发错误

未捕获的错误:QWeb2:找不到模板“WebClient”

4

1 回答 1

0

现在我使用的版本是 odoo 9.0 和 ubuntu 15.10 和 python 2.7.10 我也遇到了这个问题。并稍后发布问题。利用

ajax.loadXML('/web_editor/static/src/xml/snippets.xml', qweb);

加载这个 xml 文件,sinppets.xml 可能像这样

<?xml version="1.0" encoding="utf-8"?>
<templates id="template" xml:space="preserve">
    <t t-name="web_editor.snippets">
        <div id='oe_snippets' class="hidden-xs o_open">
            <div id="o_arrow">
                <span class="fa fa-angle-double-right fa-1x" style="top: 10px;">
                </span>
                <div>Insert Blocks</div>
                <span class="fa fa-angle-double-right fa-1x" style="bottom: 10px;">
                </span>
            </div>
            <div id="o_left_bar">
                <span class='snippets_loading'>Snippets are loading...
                </span>
            </div>
        </div>
    </t>
</templates>

var ajax = require('web.ajax');
var core = require('web.core');
var Widget = require('web.Widget');   
var qweb = core.qweb;

ajax.loadXML('/web_editor/static/src/xml/snippets.xml', qweb);
var BuildingBlock = Widget.extend({
    template: 'web_editor.snippets',
    init: function (parent, $editable) {
        this._super.apply(this, arguments);
    },
    start: function() {....
  }
});

现在,没有问题。祝你好运~

于 2016-01-04T13:39:56.930 回答