如何将django中的html的text的value值传到python后台,最好给出详细步,比如在html如何写在URL如何配置。
发布网友
发布时间:2022-04-18 08:03
我来回答
共1个回答
热心网友
时间:2022-04-18 09:32
这里html不管你是什么后台 用的协议是一样的
简单的就是提交表单
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form action="http:\\xxxx" method="get"> <!-- 将http这修改为后台地址 method get/post 与后台的要一致 -->
<input type="text" name='text'> <!-- 这里就收参数name要与后台一致 -->
<br>
<input type="submit">
</form>
</body>
</html>