我正在为 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 文件和我使用的视图的模板文件,看起来语法没问题。
如果有人对正在发生的事情有任何想法,我将不胜感激。