pyFlask 将我的输入放在我的 url 浏览器中

简而言之,python Flask 是我使用的网络托管工作台,我正在尝试创建一个不会出现在您的历史记录中的输入表单。


这是我的表单html:


<form name="ViewWindow" action="/home/ViewWindow/ViewWindowResult/">

  <input name="url" type="url" required="required" placeholder="URL Here">

  <input type="submit" value="Go">

</form>

这是使用输入url的 python 代码:


@web_site.route('/home/ViewWindow/ViewWindowResult/', methods=('GET', 'POST'))

def ViewWindowResult():

  urlboi = request.values.get('url')


  response = urllibrequest.urlopen(url) # import urllib.request as urllibrequest

  htmlBytes = response.read()

  htmlstr = htmlBytes.decode("utf8")


  return html("ViewWindowResult.html", value=htmlstr)

我的目标是到达这里;/home/ViewWindow/ViewWindow/ViewWindowResult/,但是当我输入“ https://www.w3schools.com/tags/

”时, 我最终到达了这里;/home/ViewWindow/ViewWindowResult/?url=https%3A%2F%2Fwww.w3schools.com%2Ftags%2F


为什么 Flask 将我的输入放在 url 字符串中?我不打算在任何地方这样做。

编辑:您可以通过访问https://sm--supermechm500.repl.co/home/ViewWindow/来查看


紫衣仙女
浏览 120回答 2
2回答

明月笑刀无情

尝试像这样指定表单方法:<form name="ViewWindow" action="/home/ViewWindow/ViewWindowResult/" method="post">&nbsp; <input name="url" type="url" required="required" placeholder="URL Here">&nbsp; <input type="submit" value="Go"></form>

慕斯王

使用 post 方法,如&nbsp; &nbsp; <form name="ViewWindow" action="/home/ViewWindow/ViewWindowResult/" method="post">&nbsp; <input name="url" type="url" required="required" placeholder="URL Here">&nbsp; <input type="submit" value="Go"></form然后你的python代码是&nbsp; &nbsp;@web_site.route('/home/ViewWindow/ViewWindowResult/', methods=('GET', 'POST'))def ViewWindowResult():&nbsp; input=request.form['url']#write your code herereturn(input)它对我有用,它将打印您输入的相同网址
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python