gpt4 book ai didi

javascript - include() 函数在比较数组中的值时随机工作

转载 作者:行者123 更新时间:2023-12-03 00:05:46 25 4
gpt4 key购买 nike

我昨天为一个学校项目编写了这段 JS 代码,一切都很好。该网站显示了我想要添加到对象的键/值。尽管今天,当我重新加载服务器和站点时,所有值都是未定义的或“麻瓜”。我刷新了很多次页面,有时能用,但下次又是undefined。

所以代码应该是这样的:

1.获取两个JSON文件,一个是学生列表,另一个只是姓氏

2.根据数据创建两个数组

3.检查每个学生的姓氏是否在列表中

4.判定学生是纯种、混血还是麻瓜

5.将值添加到student对象

6.在网站上显示

我知道这与函数的调用顺序有关,并且在我使用 include() 方法两次检查名称时出现了问题。但不幸的是,我没能查出是什么。 JS代码如下:

//LINKS
const link = "http://petlatkea.dk/2019/hogwarts/students.json";
const bloodLink = "http://petlatkea.dk/2019/hogwarts/families.json";

//ARRAYS
let allStudents = new Array();
let halfBloods = new Array();
let pureBloods = new Array();
window.addEventListener("DOMContentLoaded", init());

function init() {
loadJSON();
}

function loadJSON() {
fetch(link)
.then(res => res.json())
.then(jsonData => {
prepareObjects(jsonData);
showStudents();
});
fetch(bloodLink)
.then(res => res.json())
.then(jsonBloodData => {
makeArrays(jsonBloodData);
});
}

// CREATE STUDENT OBJECT WITH DATA
function prepareObjects(jsonData) {
jsonData.forEach(jsonObject => {
//create new object
let student = Object.create(jsonObject);
//split name into parts
let nameParts = jsonObject.fullname.split(" ");
//assign parts to the student object
student.firstname = nameParts[0];
student.lastname = nameParts[nameParts.length - 1];
student.house = student.house;
student.imageSource =
student.lastname.toLowerCase() +
"_" +
student.firstname.slice(0, 1).toLowerCase() +
".png";
student.id = uuidv4();
student.fullname = student.fullname;
allStudents.push(student);
});
setTimeout(function(){
checkTheBlood();

}, 300);
}


// CREATE BLOOD CLASS ARRAYS
function makeArrays(data) {

for (let i = 0; i < data.half.length; i++) {
halfBloods.push(data.half[i]);
}
for (let j = 0; j < data.pure.length; j++) {
pureBloods.push(data.pure[j]);
}

}
// CHECK FOR BLOODTYPE AND ADD KEYVALUE
function checkTheBlood() {
allStudents.forEach(obj => {
if (halfBloods.includes(obj.lastname)) {
obj.bloodtype = "half";
} else if (pureBloods.includes(obj.lastname)) {
obj.bloodtype = "pure"
} else {
obj.bloodtype = "muggle"
};
})
}

以下是完整代码:https://jsfiddle.net/bus5ef6p/1/

最佳答案

将 loadJSON 函数更改为

function loadJSON() {
fetch(link)
.then(res => res.json())
.then(jsonData => {

fetch(bloodLink)
.then(res1 => res1.json())
.then(jsonBloodData => {
makeArrays(jsonBloodData);
prepareObjects(jsonData);
showStudents();
});
});
}

并从prepareObjects函数中删除超时。

关于javascript - include() 函数在比较数组中的值时随机工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54968652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com