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.
我正在尝试编写一个程序,我希望它允许一个重定向但不允许另一个包含“&key =”的程序。这在python中可能吗?试图弄清楚这一点时非常头疼。
我不确定您如何与 URL 交互,但您可以检查是否&key=是您正在使用的 URL 的子字符串:
&key=
if "&key=" in in my_url_str: # do something
或者说,如果您正在与 Request 对象进行交互,您可以使用Request.get_full_URL和执行相同的例程。
Request.get_full_URL