我被困在一个非常糟糕的时刻。我正在使用firebase(用于数据库)和Javascript开发Web应用程序。
这是我的Firebase数据库的结构。
我想在下拉输入栏中显示这些类别,但要使每个子类别都以此方式显示在其父类别输入栏中
这是我的代码
var newTask = firebase.database().ref("childCategory");
newTask.on('value', function(snapshot){
snapshot.forEach(function(childSnapshot) {
var taskValue = childSnapshot.val();
document.getElementById("selectCatigory").innerHTML +=
<optgroup label="${taskValue.parentCategory}">
snapshot.forEach(function(childSnapshot){
var tasksValue = childSnapshot.val();
document.getElementById("selectCatigory").innerHTML +=
<option label="${tasksValue.childCName}"> </option> </optgroup>
});
});
});