当我尝试制作 ID 时;“无法读取未定义的属性‘长度’。”
2019-11-27
114
大家好;我不确定我是否也应该分享我的 html 项目。我被困在这里 :/ 我检查了几个类似的问题,但还没有解决方案...
I wanted to make ID which should be different always but could not end up my problem.
未捕获 TypeError:无法读取未定义的属性“长度” 请帮助我:未捕获
TypeError: Cannot read property 'length' of undefined at Object.addItem (app.js:30) at kontrolEkle (app.js:112) at HTMLDocument. (app.js:97)
//价格预算控制 var butcekontrol = (function(){
var Giderler = function(id,aciklama,deger){
this.id=id;
this.aciklama=aciklama;
this.deger=deger;
};
var Gelirler = function(id,aciklama,deger){
this.id=id;
this.aciklama=aciklama;
this.deger=deger;
};
var data = {
tumislem:{
gelir: [],
gider: []
},
toplam: {
gelir:0,
gider:0
}
}
当我回到这里时:
return{
addItem: function(type,des,val){
var newItem,ID;
// YENİ ID OLUŞTURMA
if (data.tumislem[type].length > 0) {
ID = data.tumislem[type][data.tumislem[type].length - 1].id + 1;
} else {
ID = 0
}
// Tipine Göre Ekleme Çıkarma Yapma
if(type==='exp'){
newItem = new Giderler(ID , des , val)
} else if(type==='inc'){
newItem = new Gelirler(ID , des, val)
}
// Dataya Push İşlemi Yapma
data.tumislem[type].push(newItem);
// RETURN//
return newItem;
},
testing:function(){
console.log(data);}
};
})();
用户界面控制代码区域
var arayuz = (function(){
var Domstrings = {
InputType:'.add__type',
InputDescription:'.add__description',
InputValue:'.add__value',
InputBtn:'.add__btn',
};
return {
getInput: function() {
return {
type: document.querySelector(Domstrings.InputType).value, // Will be either inc or exp
description: document.querySelector(Domstrings.InputDescription).value,
value: document.querySelector(Domstrings.InputValue).value
};
},
getDomstrings:function(){
return Domstrings;
}
}
})();
最后一部分
var kontrol = (function(butceknt,arayz){
var setupcontroller = function(){
//KODLAR BURAYA
var DOM = arayuz.getDomstrings();
document.querySelector(DOM.InputBtn).addEventListener('click',kontrolEkle);
document.addEventListener('keypress', function(tik){
if(tik.keyCode===13){
kontrolEkle();
}})
//END Of the line
}
var kontrolEkle = function(){
//1. Formlardan Değer Alma
var input,addItem;
input = arayuz.getInput();
console.log(input);
//2.Bütçe Kontrole Ekleme
addItem = butcekontrol.addItem(input.type,input.description,input.value);
//3.Kullanıcı Arayüzünde Güncelleme
//4.Bütçeyi Hesaplama
//5.Kullanıcıya Son Bütçeyi Gösterme
}
return{
init:function(){
console.log('Application Started');
setupcontroller();
}
}
})(butcekontrol,arayuz);
kontrol.init();
2个回答
发生这种情况是因为您尝试获取未定义的长度,您能通过 console.log 确保 data.tumislem[type].length 返回该值吗?
Luthfi
2019-11-27
嘿,老兄,我认为这行就是问题所在。
ID = data.tumislem[type][data.tumislem[type].length - 1].id + 1;
data.tumislem[type]
返回为
null
或
undefined
,请先检查一下。
Ihsan Müjdeci
2019-11-27