我对此感到困惑,因为如果我在函数外部运行代码并使用print
代替return
,我似乎没有任何问题。
我通过以下表单将数据从HTML发送到Flask:
<form method="POST" action="/">
<h4>Search for Your Device</h4>
<p>Enter the Asset Tag of the device - On the back sticker or in small print at the bottom of the lock screen.</p>
<p><input type = "text" name = "Name" /></p>
<p><input type = "submit" value = "submit" /></p>
</form>
然后我接受该输入并使用以下功能向我的移动设备管理服务器发出API请求
@app.route('/', methods=["GET","POST"])
def homepage():
try:
if request.method == "POST":
#API URL
JSS_API = 'https://private_url.com'
#Pre-Defined username and password
username = 'username'
password = 'password'
#Ask User for the Asset tag
asset_tag = request.form
New_JSS_API = JSS_API + asset_tag
#Disables Warnings about SSL
requests.packages.urllib3.disable_warnings()
JSS_Asset_Response = requests.get(New_JSS_API, auth=(username, password), verify=False, headers={'Accept': 'application/json'})
JSS_json = JSS_Asset_Response.json()
email_dict = {}
for item in JSS_json['mobile_devices']:
email_dict["Stu_name".format(item)]=item['realname']
#Can call the dictionary value by doing the following:
stu_name = email_dict['Stu_name']
return stu_name
return render_template("index.html")
except Exception as e:
return(str(e))
我收到的错误是&#34;必须是str,而不是ImmutableMultiDict&#34;但是如果在我的终端中运行该功能,用return stu_name
替换print(stu_name)
我得到了我正在寻找的结果!
我的目标是通过表单输入,然后将学生的全名返回到网页!
答案 0 :(得分:2)
我认为request.form
是ImmutableMultiDict
,JSS_API
是一个字符串,因此您无法将ImmutableMultiDict
附加到字符串,这就是您收到错误的原因。
您可以将ImmutableMultiDict
转换为dict:
request.form.to_dict()
然后调试你的代码,获取表单数据,我曾经使用request.form.to_dict().values()[0]
来获取json字符串。
或
如果您使用POST
方法,则可以检索如下参数:
username = request.form.getlist('username[]')
GET方法,请使用:
username = request.args.getlist('username[]')
查看doc的更多详情。