我想在我的网址中使用整数值,我将其定义如下:
url(r'^1/do_something/(?P<n>\d+)/$', csrf_exempt(myapp.my_method)),
# Looks like "/1/do_something/n/"
在myapp.py中,我已经按如下方式定义了我的方法:
def my_method(request, n):
print type(n) # which prints "<type 'unicode'>"
# Do some other stuff
当我定义url时,是否有一些我错过的东西?