我创建了一个非常简单的 Django API。它返回一个固定的数值(仅用于测试目的):
视图.py
from django.http import HttpResponse
def index(request):
return HttpResponse(0)
我还有一个使用 React JS 开发的简单前端。为了开发后端和前端,我使用了这两个教程:
ReactJS:https ://mherman.org/blog/dockerizing-a-react-app/
Django Python API:https : //semaphoreci.com/community/tutorials/dockerizing-a-python-django-web-application
现在我想从 ReactJS 向 Django API 发送 POST 请求并传递name和email参数。我该怎么做?
相关分类