【发布时间】:2019-09-04 17:19:47
【问题描述】:
我觉得这应该很简单,但我所做的并没有得到回报。
在 Django 中,我的应用中有这个 urls.py:
from django.urls import path
from .views import PostcodessAPIListView, PostcodesAPIID, PostcodesWithinRadius
urlpatterns = [
path("<str:postcode>/<int:radius_km>", PostcodesWithinRadius.as_view(), name="results_api_radius"),
path("", PostcodessAPIListView.as_view(), name="results_api_list"),
path("<int:pk>", PostcodesAPIID.as_view(), name="results_api_detail"),
]
我有这个观点,应该取一个邮政编码和一个以km为单位的半径,调用外部api将邮政编码转换为经度和纬度,然后再次调用外部api获取一定半径内的邮政编码。
class PostcodesWithinRadius(generics.RetrieveAPIView):
serializer_class = PostcodeSerializer
def get_queryset(self):
postcode = self.request.query_params.get('postcode', None)
radius_km = self.request.query_params.get('radius_km', None)
print(postcode, radius_km)
postcodes = self.get_postcodes_within_radius(postcode, radius_km)
print(postcodes)
return Postcode.objects.filter(postcode__in=postcodes)
def get_postcodes_within_radius(self, postcode, radius_km):
radius_km = 3
postcodes_within_radius = []
if radius_km <= 20:
radius = radius_km * 1000
else:
raise ValueError('Radius cannot be over 20km.')
GET_LAT_LON_URL = f"{POSTCODE_URL}?"
postcode_query = {
"query": postcode
}
postcode_data = requests.get(GET_LAT_LON_URL, headers=None, params=postcode_query).json()
print(postcode_data)
querystring = {
"longitude": postcode_data['result'][0]['longitude'],
"latitude": postcode_data['result'][0]['latitude'],
"wideSearch": radius,
"limit": 100,
}
res = requests.get(POSTCODE_URL, headers=None, params=querystring).json()
for postcode in res['result']:
postcodes_within_radius.append(postcode['postcode'])
return postcodes_within_radius
但是,邮政编码和半径没有通过 url 参数传递 - 给出了什么?
【问题讨论】:
标签: django parameters django-rest-framework django-urls