我试图在Javascript中循环一个名为 special_ads 的Django数组。我的想法是,我可以创建Javascript 广告对象并将它们存储在Javascript数组中。 这些对象用于选择某个广告并显示其他信息。
<script type="text/javascript">
ADS = new slideshow();
{% for ad in special_ads %}
ADS.add_ad(new advert(
"{{ ad.image }}",
"Drie halen twee betalen",
"{{ ad.company.name }}",
"{{ ad.description }}",
"{{ MEDIA_URL }}{{ ad.image }}",
"{% thumbnail ad.image 55x55 crop %}",
"brown",
"white"
));
{% endfor %}
</script>
//==================================================
// ad object
//==================================================
function advert(id,title,company,description,normal_image_src,thumb_image_src,background_color,text_color) {
this.id = id;
this.title = title;
this.company = company;
this.description = description;
this.normal_image_src = normal_image_src;
this.thumb_image_src = thumb_image_src;
this.background_color = background_color;
this.text_color = text_color;
}
我无法真正使用JSON列表,因为我在页面加载时也需要html中的相同数组,如下所示。
{% for ad in special_ads %}
<dd>
<a id="std_ad_{{ i }}" class="img">
<img id="{{ ad.image }}" class="enlarge" src="{% thumbnail ad.image 55x55 crop %}" alt="{{ ad.company.name }}" onclick="ADS.display(this)"/>
</a>
</dd>
{% endfor %}
问题是这不能正常工作。页面加载正确,但广告未添加到数组中。 Django部分似乎也正确执行。页面源代码如下。
<script type="text/javascript">
ADS = new slideshow();
ADS.add_ad(new advert(
"ads/logo_copy.jpg",
"Drie halen twee betalen",
"Directdoen.nl",
"DirectDoen helpt u graag met schoonmaken, tuinonderhoud en klussen. Bij DirectDoen bent u voor hulp in en om uw huis aan",
"http://127.0.0.1:8000/media/ads/logo_copy.jpg",
"",
"brown",
"white"
));
ADS.add_ad(new advert(
"ads/Untitled-1.jpg",
"Drie halen twee betalen",
"Jouwstraat.nl",
"Jouwstraat.nl is een website waar buren & straatgenoten met elkaar in contact kunnen
komen en blijven. Kijk dus snel op .
",
"http://127.0.0.1:8000/media/ads/Untitled-1.jpg",
"",
"brown",
"white"
));
ADS.add_ad(new advert(
"ads/AD.JPG",
"Drie halen twee betalen",
"Code 06",
"DirectDoen helpt u graag met schoonmaken, tuinonderhoud en klussen. Bij DirectDoen bent u voor hulp in en om uw huis aan
",
"http://127.0.0.1:8000/media/ads/AD.JPG",
"http://127.0.0.1:8000/media/ads/AD_JPG_55x55_crop_q95.jpg",
"brown",
"white"
));
</script>
我已经搜索了很多,但是我无法找到关于如何做到这一点的好教程。有没有人知道实现目标的最佳方式是什么?
答案 0 :(得分:0)
问题是不正确的,因为Django for-loop显然不是你的问题。我想这与广告或幻灯片课程有关。你的js控制台没有出错吗??