它没有正确的信息

时间:2019-06-18 20:18:17

标签: html django

index.html不会显示任何错误,但不会显示应该显示的信息。

使用标签没有问题,但是当尝试从网站获取信息时,它只是不显示它。

                <div class="box">
                    <article class="media">
                        <div class="media-left">
                            <figure class="image is-50x50">
                                <img src="http://openweathermap.org/img/w/{{ weather.icon }}.png" alt="Image">
                            </figure>
                        </div>
                        <div class="media-content">
                            <div class="content">
                                <p>
                                    <span class="title">{{ weather.city }}</span>
                                    <br>
                                    <span class="subtitle">{{ weather.temperature }}°F </span>
                                    <br> {{ weather.description }}
                                </p>
                            </div>
                        </div>
                    </article>

没有错误,只是图像没有显示

0 个答案:

没有答案