请在项目应用中编写一个视图函数,在页面输出“出生日期:xxxx年xx月xx日” 地址栏输入:http://127.0.0.1:8000/birthday/四位数字/一到两位数字/一到两位数字 如:birthday/1999/03/05,页面输出:出生日期:1999年3月5日
时间: 2023-05-29 17:02:49 浏览: 127
在views.py中添加如下代码:
```python
from django.shortcuts import render
def birthday(request, year, month, day):
context = {
'birthday': f'{year}年{int(month)}月{int(day)}日'
}
return render(request, 'birthday.html', context)
```
在urls.py中添加如下代码:
```python
from django.urls import path
from . import views
urlpatterns = [
path('birthday/<int:year>/<int:month>/<int:day>/', views.birthday),
]
```
在templates文件夹中新建一个birthday.html文件,添加如下代码:
```html
出生日期:{{ birthday }}
```
启动Django服务器后,在浏览器中访问http://127.0.0.1:8000/birthday/1999/03/05,将页面输出“出生日期:1999年3月5日”。
阅读全文