我已经确定了问题,但我不确定究竟是什么导致了这个问题。我的生产环境正在处理undefined和null(undefined == null
),这是所需的行为。问题发生在IE8中,对于我的开发环境,它处理null和undefined不同(undefined != null
)。
我提供了一段代码,下面两个环境都是相同的。调用render函数时,不会为两个环境传递任何参数。我添加了控制台语句,以显示每个环境如何处理传递给渲染函数的args
。
var PortalView = (function() {
return new function() {
$.extend(true, this, SystemController);
var self = this;
//Render: 'args' is not defined in this case causing the issue
self.render = function(args){
if (args == null){ console.dir('null!!');}
if (args == undefined){ console.dir('undefined!!');}
if (args != undefined && args != null){console.dir('NEITHER');}
if (args == null && args == undefined){console.dir('BOTH!!');}
console.dir('args:'+args);
var args = (args != undefined) ? args : {};
args.el = (args.el != undefined) ? args.el : '#content'; //ERROR OCCURS HERE (line 21)
args.template = "PortalTemplate"; //HTML template
self.renderTemplate(args); //inherited from 'SystemController'
};
}
})();
以下是控制台结果:
Production Environment (desired results):
LOG: "null!!"
LOG: "undefined!!"
LOG: "BOTH!!"
LOG: "args:undefined"
Development Environment (undesired results)
LOG: "null!!"
LOG: "args:undefined"
SCRIPT5007: Unable to get value of the property 'el': object is null or undefined
vwaPortalView.js, line 21 character 4
我正在寻找可能导致此类错误发生的场景。任何提示将不胜感激。
修改 的
我已经确定了问题的真正根源。它是由对跨站点(提供身份验证服务的内部Intranet站点)的JQUERY Ajax请求引起的。 jsonpCallback
参数正在破坏一切。如果有人知道任何事情,这将节省我的麻烦...很好,否则我认为我应该能够从这里开始处理它!我提供了ajax调用作为问题来源的参考(在IE8中)
$.ajax({
url: 'http://xyz.aspx', //changed for obvious reasons
dataType: 'jsonp',
jsonp: 'callback',
error: function (request, status, error) {console.dir(error);}, //Parse error
jsonpCallback: function(data, status){
console.dir(data);
console.dir(status);
}
});
答案 0 :(得分:-1)
使用typeof
var args = (typeof args === "undefined") ? {} : args;
所有浏览器都支持 typeof
,并且会返回元素的文本类型或'undefined'。