所以我用瓶子来连接我的html和python代码,但我不知道如何从我的html代码中获取用户输入并将其用作我的python代码中的变量。我在下面发布了我的代码,请帮助。
这是我的瓶子代码
from bottle import default_app, route, template, post, request, get
@route('/')
def showForm():
return template("form.html")
@post('/response')
def showResponse():
return template("response.html")
application = default_app()
这是我要求用户输入的主要表格
<!DOCTYPE html>
<html lang = "en-us">
<head>
<title>BMI Calculator</title>
<meta charset = "utf-8">
<style type = "text/css">
body{
background-color: lightblue;
}
</style>
</head>
<body>
<h1>BMI Calculator</h1>
<h2>Enter your information</h2>
<form method = "post"
action = "response">
<fieldset>
<label>Height: </label>
<input type = "text"
name = "feet">
ft
<input type = "text"
name = "inches">
in
<br>
<label>Weight:</label>
<input type = "text"
name = "weight">
lbs
</fieldset>
<button type = "submit">
Submit
</button>
</form>
</body>
这是我的响应代码,当用户点击提交时显示一个页面,我嵌入了我的python代码,以便能够计算用户的bmi
<%
weight = request.forms.get("weight")
feet = request.forms.get("feet")
inches = request.forms.get("inches")
height = (feet * 12) + int(inches)
bmi = (weight/(height^2)) * 703
if bmi < 18.5:
status = "underweight"
elif bmi < 24.9 and bmi > 18.51:
status = "normal"
elif bmi > 25 and bmi < 29.9:
status = "overweight"
else:
status = "obese"
%>
<!DOCTYPE html>
<html lang = "en-us">
<head>
<title>Calculation</title>
<meta charset = "utf-8">
</head>
<body>
<h1>Your Results</h1>
<fieldset>
<label>BMI : </label>
<input type = "text"
name = "BMI"
value = {{bmi}}>
<br>
<label>Status:</label>
<input type = "text"
name = "status"
value = {{status}}>
</fieldset>
</body>
答案 0 :(得分:0)
您似乎甚至没有尝试在POST
路由中访问您的表单数据。 forms
对象的bottle.request
属性包含所有已解析的表单数据。 Bottle documentation为如何处理表单数据提供了一个很好的示例。
此外,将逻辑放入模板中超出正确页面呈现所需的范围真的是一个坏主意。您需要处理路线中的数据或将处理移至单独的模块中,以便更好地分离责任。