0

我正在为 OpenERP v7 开发一个简单的图片库,因为我需要在服务器中编写带有托管图像的邮件模板。

我正在编写修改模块 web_ckeditor4 的功能。

我遇到的主要问题是,当我启用开发人员模式时,屏幕变白并且出现 JavaScript 错误(qweb2.js 文件抛出):

Uncaught Error: QWeb2: This page contains the following errors:error on line 1 at column 52: Space required after the Public Identifier
Below is a rendering of the page up to the first error.

qweb2.js 文件的片段,除了它抛出的异常

var QWeb2 = {
    expressions_cache: {},
    RESERVED_WORDS: 'true,false,NaN,null,undefined,debugger,console,window,in,instanceof,new,function,return,this,typeof,eval,void,Math,RegExp,Array,Object,Date'.split(','),
    ACTIONS_PRECEDENCE: 'foreach,if,call,set,esc,escf,raw,rawf,js,debug,log'.split(','),
    WORD_REPLACEMENT: {
        'and': '&&',
        'or': '||',
        'gt': '>',
        'gte': '>=',
        'lt': '<',
        'lte': '<='
    },
    tools: {
        exception: function(message, context) {
            context = context || {};
            var prefix = 'QWeb2';
            if (context.template) {
                prefix += " - template['" + context.template + "']";
            }
            throw new Error(prefix + ": " + message);
        },

我检查了我的 JavaScript 文件和我使用的视图的模板文件,看起来语法没问题。

如果有人对正在发生的事情有任何想法,我将不胜感激。

4

2 回答 2

1

如果这对其他人有帮助,我会收到此错误,因为我的 qweb xml 文件中有一个空格作为第一个字符。

于 2016-06-02T07:01:13.347 回答
0

好吧,我将模块迁移到了 Odoo v8,现在看来一切正常。我不知道这在 OpenERP v7 中不起作用的原因,但我不在乎了

于 2015-08-19T09:18:55.140 回答