我正在尝试使用POST Api创建按钮。点击按钮后有一个call post api方法,但我想在api的主体中添加参数。
你能帮助如何添加参数吗?谢谢。
表格和按钮代码:
<form action="http://localhost:8000/api/customer/pozicanie/add/" method="post">
<button name="foo" value="Add" href="http://localhost:8000/">Add</button>
</form>
Api代码:
@csrf_exempt
def customer_add_pozicanie(request):
if request.method == "POST":
pozicanie = Pozicanie.objects.create(
uzivatel = request.user,
name = request.POST["heslo"],
stojan = randint(1,20),
)
return redirect('http://localhost:8000/chcembike/');