我正在尝试基于对象向DOM添加数据。在对象内是一个用于'标签的数组。当使用来自对象的数据向DOM添加新的div时,当我循环遍历它们时,标记将无法正确呈现。它们与它们关联的对象数据不对应。
我不确定如何让它们正确显示。任何想法都会有所帮助,谢谢
var houses = {
"house": [{
"source": "images/background.jpg",
"gallery": ["images/house-name-1.jpg", "images/house-name-2.jpg", "images/house-name-3.jpg"],
"short_desc": "3 BR, 2 Bath, Bellville, NJ",
"long_desc": "Great 2 family in a prime location. Close to public transportation, schools, and shopping. This property is subject to 3rd party approval, Town CO and permits to be paid by the buyer.",
"address": "268 Washington Ave Belleville, NJ 07109",
"sq_ft": "3,456 sqft",
"price": "262,000",
"tags": ["For Purchase", "Multi-family", "Duplex", "House", "3 Bed", "2 Bath"]
}, {
"source": "images/background.jpg",
"gallery": ["images/house-name-1.jpg", "images/house-name-2.jpg", "images/house-name-3.jpg"],
"short_desc": "3 BR, 2 Bath, West Orange, NJ",
"long_desc": "Single Family Home for sale by owner in West Orange, NJ. Charming colonial in great location on large park-like property in West Orange, border of Roseland. Living room with beamed ceiling and wood stove, eat-in kitchen with granite countertops. Updated bath, oversized laundry room off kitchen also serves as pantry. Spiral staircase leads to 3 bedrooms on second floor. Three-season sunroom leads to deck and beautiful backyard, great for entertaining. Fenced front and side yard, with koi pond. Newer roof, freshly painted exterior.",
"address": "55 Laurel Ave West Orange, NJ 07052",
"sq_ft": "1,618 sqft",
"price": "344,900",
"tags": ["For Purchase", "Single-family"]
}, {
"source": "images/background.jpg",
"gallery": ["images/house-name-1.jpg", "images/house-name-2.jpg", "images/house-name-3.jpg"],
"short_desc": "3 BR, 2 Bath, Berkely Heights, NJ",
"long_desc": "Great 2 family in a prime location. Close to public transportation, schools, and shopping.",
"address": "268 Washington Ave Belleville, NJ 07109",
"sq_ft": "3,456 sqft",
"price": "140,000",
"tags": ["For Purchase", "Multi-family", "Duplex", "House"]
}, {
"source": "images/background.jpg",
"gallery": ["images/house-name-1.jpg", "images/house-name-2.jpg", "images/house-name-3.jpg"],
"short_desc": "1 BR Studio, Newark, NJ",
"long_desc": "Great 2 family in a prime location. Close to public transportation, schools, and shopping.",
"address": "268 Washington Ave Belleville, NJ 07109",
"sq_ft": "3,456 sqft",
"price": "140,000",
"tags": ["For Purchase", "Single-family", "2 Car Garage", "House"]
}, ]
}
// Set variable for houses in images object
var home = houses.house;
// create house card for each house in houses object
$.each(home, function(index, value) {
var new_tag = home[index].tags;
$.each(new_tag, function(key, value) {
$(".homes-tags").append("<p class='tag'>" + value + "</p>");
});
$('#homes-list').append('<div class="house-card"><div class="row"><div class="col span_7"><h2 class="short-desc">' + value.short_desc + '</h2><p class="address">' + value.address + '</p><p class="sqft">' + value.sq_ft + '</p><p class="price">' + value.price + '</p><p class="long-desc">' + value.long_desc + '</p></div><div class="col span_5 image"><img src="' + value.source + '" width="100%" /><p class="homes-tags"></p></div></div><div class="clear"></div></div>');
});
请参阅jsfiddle以了解代码问题 https://jsfiddle.net/vtc1ewrz/
答案 0 :(得分:1)
你的代码有点乱,你从错误的角度接近这个。但真正的问题是你将标签应用于尚未添加到页面的元素。然后你重复这个过程,所以你基本上在你迭代的每个新房子上取代.homes-tags
。
我已将代码更改为以下内容,从而解决了您的问题:
// create house card for each house in houses object
$.each(home, function(index, value) {
var new_tag = home[index].tags;
var newHtml = '<div class="house-card"><div class="row"><div class="col span_7"><h2 class="short-desc">' + value.short_desc + '</h2><p class="address">' + value.address + '</p><p class="sqft">' + value.sq_ft + '</p><p class="price">' + value.price + '</p><p class="long-desc">' + value.long_desc + '</p></div><div class="col span_5 image"><img src="' + value.source + '" width="100%" /><div class="homes-tags">';
$.each(new_tag, function(key, value) {
newHtml += '<p class="tag">' + value + '</p>';
});
newHtml += '</div></div></div><div class="clear"></div></div>';
$('#homes-list').append(newHtml);
});
但是,说实话,这一般不太好。例如,您将逻辑与演示混合在一起。此外,$.each
比仅使用for
循环更'昂贵'。