Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、次の URL です。
http://localhost:8080/company?a=1
URLにパラメータaが含まれているかどうかを知るにはどうすればよいですか。
アクセス方法は次のaとおりです。
a
@route('/company') def company(): if bottle.request.params.get('a') is not None: # param "a" was present in the URI's query string