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.
在 Django 中,我们在 urls.py 中定义 url 映射。这两者有什么区别?
/app/kill/$ /app/kill$
它们都是非常不同的网址。但是对于必须的用户来说,他们应该是一样的,所以 django 有一个很好的功能:APPEND_SLASH 设置变量。从文档:
当设置为 True 时,如果请求 URL 与 URLconf 中的任何模式都不匹配并且它不以斜杠结尾,则会向附加斜杠的相同 URL 发出 HTTP 重定向。