我正在尝试使用 Bottle 和 HTML 来测试 HTTP GET 和 POST。我编写了这段代码,它要求用户输入颜色名称作为参数,如果它存在于预定义的列表中,那么它应该打印找到并显示颜色。但我不知道如何通过论点。如果我尝试使用橙色、红色等默认值,它可以正常工作。
from bottle import*
import socket
@error(404)
def error404(error):
return '<p align=center><b>Sorry, a screw just dropped.Well, we are hoping to find it soon.</b></p>'
@get('/New/rem_serv/:arg')
def nextstep(arg):
_colorlist=['Red','Green','Blue','Yellow','Orange','Black','White']
if arg in _colorlist:
return "Found the same color \n","<p style='font-weight:bold; text-align:center; background-color:arg;'>" + str(arg)
else:
return error404(404)
addrIp = socket.getaddrinfo(socket.gethostname(), None)
addrIp = addrIp[0][4][0]
run(host=addrIp, port=80)