所以,我正在研究一个项目作为实习生使用Bugsnag来捕获他们的Web应用程序中的错误。我试图修复一个我无法重现的错误。它仅影响使用该产品的所有客户中的2个人。我没有写这段代码,我只是试图修复它中的错误。错误是TypeError·Uncaught TypeError: Cannot set property 'selected' of undefined
,它在第二行的此函数中。
function selectInstaller(installer) {
installers[installer.id].selected = true;
selectedInstaller[installer.id] = installer;
}
假设有一个个人列表,用户可以选择一个人在该日历上为该特定个人显示事件。选择用户后,将调用此函数。
function handleSelectInstaller(event) {
var $btn = $(this);
var $li = $btn.closest('li');
$li.toggleClass('active');
var installerAttributes = $btn.closest('li').data();
if($li.hasClass('active')) {
selectInstaller(installerAttributes);
fetchInstallerCalendar();
} else {
previousInstallerCount = Object.keys(selectedInstaller).length;
unselectInstaller(installerAttributes);
syncView();
}
}
正如您所见,handleSelectInstaller函数然后调用selectInstaller函数,然后发生错误。就像我说的,这是一个罕见的错误发生,并且我看不到重现错误。我想,对于那个特定的人来说,数据库可能有些问题,但我的经理看着它,他说它看起来是正确的。他还尝试登录用户的帐户并尝试以这种方式重现它,并且它没有给他任何问题(因此他无法在他的计算机上重现它)。但是当用户登录到他们的计算机上时,Bugsnag仍在报告它。关于如何重现此错误的任何想法,以便我可以解决问题?或者它完全不受我的控制?
编辑:这是加载页面时调用的内容。最后一个函数将自动选择已登录的用户。然后,当用户(安装程序)选择或取消选择其名称时,将调用handleSelectInstaller函数。 stacktrace显示我们进入handleSelectInstaller函数。
function init(options) {
var options = options || {};
baseUrl = serverpath + "v1.0/calendar_events";
selector = options.selector || '#calendar';
colors = {
default: '#59595C',
disabled: '#ff9f89'
};
dateFormat = 'YYYY-MM-DD';
type = $(selector).data('type');
installers = {};
installerArray = [];
selectedInstaller = {};
cache = {};
cacheCalendar = {};
currentMonth = {start: null, end: null}
standardInstallerObject = {jobs: {}, daysOfWeekDisabled: {}, time_off: {}, color:null}
previousInstallerCount = 0;
setup();
}
function setup() {
setupListeners();
setupDatePickers();
$('.installer-name').text('Select Installer');
syncEventTypes();
syncJobStatuses();
fetchInstallers(setupCalendar);
}
function fetchInstallers(callback) {
$.ajax({
url: serverpath + 'v1.0/users?role=installers',
type: "GET",
dataType: 'json'
}).done(function(response) {
loadInstallers(response);
if(typeof callback === 'function') callback();
})
.fail(function(xhr) {
handleError(xhr);
$('#calendar-loading-indicator').fadeOut();
})
.always(function() { });
}
function loadInstallers(response) {
for(var i in response) {
var installer = response[i];
var id = installer.id;
//need to extend / copy object since the object would be stored by reference not by value
var copiedObject = $.extend(true, {}, standardInstallerObject);
var copiedObjectCalendar = $.extend(true, {}, standardInstallerObject);
cache[id] = copiedObject;
cacheCalendar[id] = copiedObjectCalendar;
if(installers[id]) continue;
installers[id] = installer;
installerArray.push(installers[id]);
}
if(type == 'installer') {
var installer = installers[$.User.id()];
selectInstaller(installer);
$('.installer-pick-list li[data-id="'+ $.User.id() +'"]').addClass('active');
}
}
答案 0 :(得分:1)
您使用的是ajax电话吗?也许使用setTimeout模拟一个长的ajax调用,看看你是否得到了同样的错误。因此,使用setTimeout调用包装那里的ajax调用,并将其设置为类似4000或类似的东西。这是我所谈论的一个很好的例子。 using SetTimeout with Ajax calls
setTimeout(function(){checkData()}, 5000);
function checkData(){
$.ajax({
//
});
}
由于负载安装程序功能已经运行,并且用户通过首先选择安装程序来击败它们,您可以执行类似的操作。
对于公众
$.ajax({
url: //something
type: "GET",
dataType: 'json'
}).done(function(response) {
loadInstallers(response);
$.publish('Installer.set_installer_info');
if(typeof callback === 'function') callback();
})
});
对于订阅
$.subscribe('Installer.set_installer_info', function() {
$('body').on('click', '.installer-calendar-container .installer-pick-list .selectable', handleSelectInstaller);
});