伙计们,当用户通过post方法发送值时,我想返回HTML页面的URL作为响应
实际上,HTML页面将包含用户发布的数据,
但是实际上发生的是,当用户发布数据以打开该HTML页面时,
我尝试过的代码
class CoordView(viewsets.ModelViewSet):
queryset = Coord.objects.all()
renderer_classes = (TemplateHTMLRenderer,)
serializer_class = CoordSerializer
template_name = 'index.html'
id = {'id':id }
Response ('http://127.0.0.1:8000/detail/{{id}}')
但是我想将该HTML页面URL返回给用户。