我有一个小提琴http://jsfiddle.net/gq0t4j93/51/ 向我的页面显示我在尝试访问不同级别的数组时遇到问题。
我使用简单的三元运算来工作,但是新添加的if / else语句现在什么也没显示。
如果您查看小提琴的JS,您将看到我在三元运算符的注释部分中
// fullContent.innerHTML = '';
// rightContent.innerHTML = '';
// leftContent.innerHTML = '';
// fullContent.innerHTML = currentJSONobject.content[i].panel_type_id == 1 ? currentJSONobject.content[i].content : fullContent.innerHTML;
// leftContent.innerHTML = currentJSONobject.content[i].panel_type_id == 2 ? currentJSONobject.content[i].content : leftContent.innerHTML;
// rightContent.innerHTML = currentJSONobject.content[i].panel_type_id == 3 ? currentJSONobject.content[i].content : rightContent.innerHTML;
这里只是三元运算符http://jsfiddle.net/gq0t4j93/55/
这些到位了,我删除了if / else上面的那一部分,它按预期工作。但是我需要使用if else语句来决定要放在哪个div中的内容,具体取决于页面和面板的类型。
我正在尝试对其进行设置,以便“如果顶级(page_id)数组的page_type_id为n,则检查该页面的每个内容元素的面板类型。如果n,则放入此div,如果x放入那个div”
我真正需要弄清楚的是如何正确地访问它,以便在每次迭代中,我先检查page_type_id,以便知道要隐藏的DIVS,然后检查panel_type_id,以便知道将哪个内容放入哪个div。
const original_json = [{
"pageID": "93",
"page_type_id": "2",
"display_id": "2",
"slide_order": null,
"duration": "74",
"background_img": "images\/bg_rainbow.svg",
"panel_id": "86",
"panel_type_id": "2",
"cont_id": "138",
"contID": "138",
"content": "\r\n\r\n\r\n<\/head>\r\n\r\nLeft 93<\/p>\r\n<\/body>\r\n<\/html>"
},
{
"pageID": "93",
"page_type_id": "2",
"display_id": "2",
"slide_order": null,
"duration": "74",
"background_img": "images\/bg_rainbow.svg",
"panel_id": "87",
"panel_type_id": "3",
"cont_id": "139",
"contID": "139",
"content": "\r\n\r\n\r\n<\/head>\r\n\r\nRight 93<\/p>\r\n<\/body>\r\n<\/html>"
},
{
"pageID": "94",
"page_type_id": "1",
"display_id": "2",
"slide_order": null,
"duration": "74",
"background_img": "images\/bg_rainbow.svg",
"panel_id": "87",
"panel_type_id": "1",
"cont_id": "139",
"contID": "139",
"content": "\r\n\r\n\r\n<\/head>\r\n\r\nFull Page<\/p>\r\n<\/body>\r\n<\/html>"
},
{
"pageID": "95",
"page_type_id": "1",
"display_id": "2",
"slide_order": null,
"duration": "74",
"background_img": "images\/bg_rainbow.svg",
"panel_id": "87",
"panel_type_id": "1",
"cont_id": "139",
"contID": "139",
"content": "\r\n\r\n\r\n<\/head>\r\n\r\nFull Page 2<\/p>\r\n<\/body>\r\n<\/html>"
},
{
"pageID": "96",
"page_type_id": "1",
"display_id": "2",
"slide_order": null,
"duration": "74",
"background_img": "images\/bg_rainbow.svg",
"panel_id": "87",
"panel_type_id": "1",
"cont_id": "139",
"contID": "139",
"content": "\r\n\r\n\r\n<\/head>\r\n\r\nFull Page 3<\/p>\r\n<\/body>\r\n<\/html>"
},
];
let counter = 0;
var fullContent = document.getElementById('fullContent');
var leftContent = document.getElementById('leftContent');
var rightContent = document.getElementById('rightContent');
var fullColumn = document.getElementById('fullColumn');
var leftColumn = document.getElementById('leftColumn');
var rightColumn = document.getElementById('rightColumn');
// loop through original json
// for each item, get page ID and see if we've already created a new Page object for it
// if we have, add the object from the original json to the "content" array of the new page object
// otherwise, create a new Page object to put in our new array
const pages_array = original_json.reduce(function(pages_array, item, index, original_json) {
const current_pageID = item.pageID;
const exisiting_page = pages_array.find(page => page.pageID === current_pageID);
if (exisiting_page === undefined) {
const new_Page = {
pageID: current_pageID,
content: [item]
}
pages_array.push(new_Page);
} else {
exisiting_page.content.push(item)
}
return pages_array;
}, []);
// Open console to see data
console.clear();
console.log(pages_array); //this prints correct array
setInterval(() => { //here I loop through pages, but i need to loop within here over content to render html
const currentJSONobject = pages_array[counter];
for(var i = 0; i < currentJSONobject.content.length; i++){
if(currentJSONobject.content[i].page_type_id == 1){
leftColumn.style.display = "none";
rightColumn.style.display = "none";
leftColumnQtr.style.display = "none";
rightColumnQtrHalf.style.display = "none";
rightColumnQtr.style.display = "none";
leftColumnQtrHalf.style.display = "none";
if(currentJSONobject.content[i].panel_type_id == 1){
fullcontent.innerHTML = currentJSONobject.content[i].content;
}
}else if(currentJSONobject.content[i].page_type_id == 2){
fullColumn.style.display = "none";
leftColumnQtr.style.display = "none";
rightColumnQtrHalf.style.display = "none";
rightColumnQtr.style.display = "none";
leftColumnQtrHalf.style.display = "none";
if(currentJSONobject.content[i].panel_type_id == 2){
leftContent.innerHTML = currentJSONobject.content[i].content;
}else if(currentJSONobject.content[i].panel_type_id == 3){
rightContent.innerHTML = currentJSONobject.content[i].content;
}
}
// fullContent.innerHTML = '';
// rightContent.innerHTML = '';
// leftContent.innerHTML = '';
// fullContent.innerHTML = currentJSONobject.content[i].panel_type_id == 1 ? currentJSONobject.content[i].content : fullContent.innerHTML;
// leftContent.innerHTML = currentJSONobject.content[i].panel_type_id == 2 ? currentJSONobject.content[i].content : leftContent.innerHTML;
// rightContent.innerHTML = currentJSONobject.content[i].panel_type_id == 3 ? currentJSONobject.content[i].content : rightContent.innerHTML;
}
console.log(pages_array[counter])
counter += 1;
if (counter === pages_array.length) {
counter = 0;
}
}, 1500)
<div class="row middle" id="middle" style="background-image: url();">
<div class="col-lg-6 fullColumn">
<div class="fullContent" id="fullContent" style=" height: 100%; ">
</div>
</div>
<!-- Half Page Divs -->
<div class="col-lg-6 leftColumn">
<div class="leftContent" id="leftContent" style=" height: 100%; ">
</div>
</div>
<div class="col-lg-6 rightColumn">
<div class="rightContent" id="rightContent" style=" height: 100%; ">
</div>
</div>
<!-- End Half Page Divs -->
</div>
<!-- End Row Middle -->
答案 0 :(得分:2)
大多数情况下,请检查控制台是否有错误,并打印出相关的错误堆栈。问题在这里:
var fullColumn = document.getElementById('fullColumn');
var leftColumn = document.getElementById('leftColumn');
var rightColumn = document.getElementById('rightColumn');
在这里
<div class="col-lg-6 leftColumn">
<div class="leftContent" id="leftContent" style=" height: 100%; ">
</div>
</div>
您正在通过ID查询您html使用类的位置(例如leftColumn
)。使用querySelector/querySelectorAll
或getElementsByClassName
或为您的html元素设置正确的ID。
还有一些未定义的变量,例如leftColumnQtr
,您正试图从中访问未定义的变量的样式属性。
查看更新的工作jsfiddle http://jsfiddle.net/gq0t4j93/74/