创建项目
创建工程项目如下所示:
设置文件settings.py
中的设置主要有两个
1.注册app
2.设置templates的路径
前面的文章已经介绍过多次如何设置了,此处不再做详细赘述。
接口api为:http://api.map.baidu.com/telematics/v3/weather"htmlcode">
from django.shortcuts import render import requests # Create your views here. def index(request): if request.method == 'POST': city = request.POST['city'] url = 'http://api.map.baidu.com/telematics/v3/weather"htmlcode">from django.contrib import admin from django.urls import path from myApp import views urlpatterns = [ path('admin/', admin.site.urls), path('index/',views.index), path('select/',views.index), ]
index.html
界面文件代码如下:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{{city}}天气信息</title> <style> html,body{ height:100%; margin:0; color: white; text-align: center; } body{ /*渐变色*/ background: linear-gradient(#1078c7,#7196b4); } form{ text-align: center; } main img{ width: 80px; } h1{ margin:5px; } footer{ display: flex; } section{ flex-grow: 1; border-right:1px solid greenyellow; } section:nth-child(3){ border:none; } </style> </head> <body> <form action="/select/" method="POST"> {% csrf_token %} <input name="city" type="text" placeholder="请输入城市"> <button type="submit">查询</button> </form> <main> <h2>实时天气</h2> <img src="/UploadFiles/2021-04-08/{{today.dayPictureUrl}}">
python manage.py runserver
启动服务器,在浏览器打开网址,即可看到效果:在上面的查询框中输入城市名,即可查询别的城市天气信息:
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接