在django中 针对requests对象views.py中def get1(request): a=requests.GET.get(‘a’) return aurl=localhost:8000/get1?a=1&b=2中为什么不用定义路由便可直接调用get1函数呢?中间件是怎么处理请求头的为什么get1要放在视图函数里?