我正在尝试使用对本地主机中我自己的 API 的请求发布请求。API 用于创建用户。问题是,当我尝试使用 Swagger UI 时,它可以工作,但是当我尝试使用 HTML 表单时,页面总是给我永无止境的加载。
这是我的视图代码:
url = "http://localhost:5000/api/user/"
email = request.form.get('email')
username = request.form.get('username')
password = request.form.get('password')
jsondata = {
"email": email,
"username": username,
"password": password
}
req = requests.post(url, json=jsondata)
return redirect(url_for('main.main'))
这是 API(使用 Flask_restplus)
def post(self):
data = api.payload
return save_new_user(data) # store the data to database
这里有什么问题?之前谢谢