当DataGrid呈现时,如果它遇到错误(在我的情况下,通常使用cell.formatter或cell.get),网格捕获异常,中止整个过程,并简单地放置模糊消息,“抱歉,发生错误”。
有没有办法抑制异常捕获,以便在发生错误时出现在调试控制台中?
答案 0 :(得分:0)
我没有找到使用dojo默认行为的方法,所以作为一种解决方法,我在将其传递给网格之前创建了一个小实用程序来更改布局结构。 (有点黑客,但是我用脚本制作了网格,而不是标记,所以它现在可以工作了,无论如何都有一个新的网格......
lib.wrapTryCatch = function(call, onException){
onException = onException || function(e){
console.log({wrappedException: e});
return e.message;
};
var f = function tryWrapper(){
try{
var val = call.apply(this, arguments);
return val;
}
catch(e){
return onException(e);
}
}
f.wrapped = call;
f.onException = onException;
return f;
}
lib.gridUtils = {
/** Convenience/debugging function to make exceptions visible
* if grid structure cells have errors.
*
* Puts exception to the console, instead of the grid's default
* behavior of dying silently
*
* */
decorateStructure: function(structure){
for(var idx in structure){
cell = structure[idx];
if('get' in cell){
cell.get = lib.wrapTryCatch(cell.get);
}
if('formatter' in cell){
cell.formatter = lib.wrapTryCatch(cell.formatter);
}
}
return structure;
}
}