长度为= 0的权限数组上的ArrayIndexOutOfBoundsException

时间:2019-07-07 15:02:43

标签: java android arrays indexoutofboundsexception

第7行出现错误。我收到此错误:

  

java.lang.ArrayIndexOutOfBoundsException:length = 0;索引= 0

有关此Java代码:

eventRender: function(event, element) {
    //Check what is the key for description in event and use that one.
    element.find('.fc-title').append(" " + event.description); 
     element.bind('dblclick', function() {
            $('#ModalEdit #id').val(event.id);
            $('#ModalEdit #title').val(event.title);
            $('#ModalEdit').modal('show');
        });
}

如何解决此错误

0 个答案:

没有答案