Django Book 翻译
菜单>:
TOC
返回
原文:
Continuing with our ``hours_ahead`` example, lets put a wildcard in the URLpattern. As we mentioned previously, a URLpattern is a regular expression; hence, we can use the regular expression pattern ``\d+`` to match one or more digits:
翻译:
继续我们的 ``hours_ahead`` 范例,让我们在URL模式里使用通配符。我们前面讲到,URL模式 是一个正则表达式,因此,我们可以使用正则表达式模式 ``\d+`` 来匹配一个或多个数字:
备注:
译者: